/* Style untuk Halaman Jadwal Asesmen */
.jadwal-container {
    padding: 20px 0;
}

.jadwal-header {
    text-align: center;
    margin-bottom: 30px;
    color: #107C41;
}
.jadwal-header h1 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}
.jadwal-header p {
    color: #666;
}

/* Filter Hari (Opsional - untuk masa depan) */
.day-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.day-tab {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    white-space: nowrap;
    color: #555;
    font-size: 0.9em;
    cursor: pointer;
    border: 1px solid #ddd;
}
.day-tab.active {
    background: #107C41;
    color: white;
    border-color: #107C41;
}

/* Kartu Hari */
.schedule-day {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.day-header {
    background: linear-gradient(to right, #107C41, #0d6334);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-block {
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.session-block:last-child {
    border-bottom: none;
}

.session-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.session-badge {
    background: #e8f5e9;
    color: #107C41;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    margin-right: 10px;
}
.session-time {
    color: #666;
    font-size: 0.9em;
}
.session-subject {
    margin-left: auto;
    font-weight: 600;
    color: #333;
    text-align: right;
}

/* Grid Pengawas */
.supervisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.supervisor-card {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s;
}
.supervisor-card:hover {
    transform: translateY(-2px);
    border-color: #107C41;
}

.class-code {
    display: block;
    font-size: 0.8em;
    color: #888;
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.supervisor-name {
    display: block;
    font-size: 0.95em;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .session-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .session-subject {
        margin-left: 0;
        text-align: left;
        margin-top: 5px;
        font-size: 1.1em;
    }
    .supervisor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}