/* =====================================================
   QUIZ PREVIEW PAGE STYLES
===================================================== */


/* Custom Layout & Internal Scrollbar untuk Sidebar */

.quiz-sidebar-container {
    position: sticky;
    top: 20px;
}

.quiz-sidebar-scroll {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 4px;
}


/* Scrollbar Style Custom */

.quiz-sidebar-scroll::-webkit-scrollbar,
.attempt-history-scroll::-webkit-scrollbar {
    width: 5px;
}

.quiz-sidebar-scroll::-webkit-scrollbar-track,
.attempt-history-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.quiz-sidebar-scroll::-webkit-scrollbar-thumb,
.attempt-history-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.quiz-sidebar-scroll::-webkit-scrollbar-thumb:hover,
.attempt-history-scroll::-webkit-scrollbar-thumb:hover {
    background: #9d0b03;
}


/* Internal Scroll untuk Tabel Riwayat Percobaan */

.attempt-history-scroll {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 2px;
}


/* Styling Accordion Header Sidebar */

.sidebar-category-toggle {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.sidebar-category-toggle:hover {
    background-color: #f8f9fa;
}

.sidebar-category-toggle .chevron-icon {
    transition: transform 0.2s ease;
}

.sidebar-category-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}


/* Style Item Quiz Aktif di Sidebar */

.quiz-sidebar-item.active-item {
    border-left: 4px solid #9d0b03 !important;
    background-color: #f8f9fa !important;
}


/* Style Interaktif untuk Kolom Sorting */

.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease-in-out;
}

.sortable-header:hover {
    background-color: #e9ecef !important;
}