/* General Container */
.rc-exam-list, .rc-dashboard, .rc-timeline, .rc-admin-form, .rc-analytics {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

/* Exam List Items */
.rc-exam-item {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background: #fafafa;
}
.rc-exam-item h3 {
    margin: 0 0 10px;
}
.rc-view-timeline {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
}
.rc-view-timeline:hover {
    background: #005177;
}

/* Dashboard Items */
.rc-dashboard-item {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fdfdfd;
    margin-bottom: 15px;
}
.rc-progress-bar {
    background: #eee;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    margin: 10px 0;
}
.rc-progress-fill {
    background: #4CAF50;
    height: 100%;
    text-align: center;
    color: white;
    font-size: 12px;
}

/* Timeline */
.rc-timeline {
    border-left: 3px solid #0073aa;
    padding-left: 20px;
    position: relative;
}
.rc-stage {
    margin-bottom: 25px;
    padding-left: 10px;
    position: relative;
}
.rc-stage::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #0073aa;
    border-radius: 50%;
}
.rc-stage.locked::before {
    background: #ccc;
}
.rc-stage-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.rc-stage-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}
.rc-stage-desc {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Forms */
.rc-stage-form select,
.rc-stage-form input[type="text"],.rc-stage-form input[type="number"],
.rc-stage-form textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}
.rc-stage-form button {
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
}
.rc-stage-form button:hover {
    background: #3e8e41;
}

/* Analytics Table */
.rc-analytics-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
}
.rc-analytics-table th, .rc-analytics-table td {
    padding: 8px;
    border: 1px solid #ddd;
}
.rc-analytics-table th {
    background: #f4f4f4;
}
.rc-timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rc-stage {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #ccc;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .rc-stage.unlocked { background-color: #e6ffe6; border-color: #4CAF50; }
        .rc-stage.locked { background-color: #ffe6e6; border-color: #f44336; opacity: 0.6; }
        .rc-stage.yesno { border-left: 8px solid #2196F3; }
        .rc-stage.text { border-left: 8px solid #9C27B0; }
        .rc-stage.feedback { border-left: 8px solid #FF9800; }
        .rc-stage-title { font-weight: bold; font-size: 18px; margin-bottom: 5px; }
        .rc-stage-desc { font-size: 14px; margin-bottom: 10px; }
 .rc-stage-after-no {
            background-color: #ffe6e6 !important;
            border-color: #f44336 !important;
            opacity: 0.9;
        }
       .rc-stage a{
            border: 2px solid;
    padding: 5px 10px;
    border-radius: 10px;
    color: white !important;
    background: green;
        }
        .rc-edit-btn{
            background: red;
    padding: 5px 20px;
        }