
/* PassPaeds Complete CSS */
.passpaeds-complete-dashboard {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px;
    font-size: 14px; /* slightly smaller base font */
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.stat-content h3 {
  color: aliceblue !important;
}

.dashboard-header h1 {
    margin: 0 0 8px 0;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: aliceblue;
}

.subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin: 0 0 12px 0;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.18);
}

.stat-icon {
    font-size: 20px;
    opacity: 0.9;
}

.stat-content h3 {
    margin: 0 0 4px 0;
    font-size: 13px;
    opacity: 0.9;
}

.stat-number {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
}

@media (max-width: 1200px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.dashboard-sidebar1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.sidebar-section h3 {
    margin: 0 0 12px 0;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.category-item1 {
    margin-bottom: 1px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.checkbox-container {
    display: block;
    cursor: pointer;
    position: relative;
}

.category-info h4 {
    margin: 0 0 6px 0;
    color: #2d3748;
    font-size: 14px !important;
    font-weight: 600;
}

.category-desc {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 12px;
}

/* Category Selector */
.selector-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.category-search {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.selector-buttons {
    display: flex;
    gap: 10px;
}

.selector-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-select-all {
    background: #4f46e5;
    color: white;
}

.btn-clear-all {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.categories-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.category-item1 {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.category-item1:hover {
    border-color: #4f46e5;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.1);
}

.checkbox-container {
    display: block;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 20px;
    left: 200px;
    height: 22px;
    width: 22px;
    background-color: #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #4f46e5;
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.category-info h4 {
    margin: 0 0 -16px 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

.category-desc {
    margin: 0 0 12px 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.category-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.accuracy-badge {
    background: #10b981;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.selection-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.summary-info {
    font-weight: 500;
    color: #2d3748;
    font-size: 13px;
}

.question-count {
    color: #4f46e5;
    font-weight: 600;
    margin-left: 6px;
    font-size: 13px;
}

.btn-start-practice {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s;
}

.btn-start-practice:hover {
    transform: translateY(-2px);
}

.btn-start-practice:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.btn-start-practice:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

/* Recent Activity */
.recent-activity .activity-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.activity-item {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
}

/* Sessions list styling */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.session-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 14px rgba(17, 24, 39, 0.05);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.session-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.session-meta {
    font-size: 12px;
    color: #6b7280;
}

.activity-item {
    padding: 10px;
    margin-bottom: 8px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

/* Modal adjustments - slightly smaller and tighter */
.passpaeds-access-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 100000;
    padding: 12px;
}

.passpaeds-access-modal {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 14px 30px rgba(2,6,23,0.28);
    position: relative;
}

.pp-access-close {
    position: absolute;
    right: 10px;
    top: 6px;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #374151;
}

.pp-access-body h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 18px;
}

.pp-access-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.pp-blur-active {
    filter: blur(3px);
    transition: filter 0.18s ease;
    pointer-events: none;
    user-select: none;
}

.session-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.session-actions .btn-resume-session {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.session-actions .btn-resume-session:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.18);
}

@media (max-width: 768px) {
    .sessions-grid {
        grid-template-columns: 1fr;
    }
}

.activity-item.session_started {
    border-left-color: #3b82f6;
}

.activity-item.question_answered {
    border-left-color: #10b981;
}

.activity-item.session_completed {
    border-left-color: #8b5cf6;
}

.activity-content {
    font-size: 14px;
    color: #2d3748;
    margin-bottom: 5px;
}

.activity-time {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.loading-activity {
    text-align: center;
    padding: 20px;
    color: #64748b;
}

/* -------------------- Access Modal & Blur -------------------- */
.passpaeds-access-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    z-index: 100000;
    padding: 20px;
}

/* Access plans list inside modal */
.pp-access-plans { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.pp-plan { background:#fff; border:1px solid #e6eef6; padding:10px; border-radius:8px; display:flex; justify-content:space-between; align-items:center; gap:10px; }
.pp-plan h4 { margin:0; font-size:15px; }
.pp-plan p { margin:0; font-size:13px; color:#6b7280; }
.pp-plan-prod { font-size:12px; color:#475569; }
.pp-plan-actions { display:flex; gap:8px; align-items:center; }
.pp-plan-free { border-color:#c7f9dc; background:#f0fdf4; }
.pp-plan-free h4 { color:#065f46; }
.pp-access-loading { color:#64748b; }

.passpaeds-access-modal {
    background: #ffffff;
    padding: 22px;
    border-radius: 10px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(2,6,23,0.35);
    position: relative;
}

.pp-access-close {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #374151;
}

.pp-access-body h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
}

.pp-access-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.pp-blur-active {
    filter: blur(5px);
    transition: filter 0.2s ease;
    pointer-events: none;
    user-select: none;
}

/* -------------------- Session Details Modal -------------------- */
.pp-session-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.48);
    z-index: 110000;
    padding: 12px;
    overflow: auto;
}

.pp-session-modal {
    background: #fff;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(2,6,23,0.4);
    position: relative;
}

.pp-session-body {
    padding: 16px;
    overflow: auto;
}

.pp-session-close {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.pp-session-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* toolbar and pagination for session modal */
.pp-session-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pp-toolbar-left {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pp-toolbar-left select, .pp-toolbar-left input {
    padding: 6px 8px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.pp-toolbar-right { display:flex; gap:8px; align-items:center; }
.pp-export-csv { padding:6px 10px; font-size:13px; border-radius:6px; }

.pp-session-pagination { display:flex; gap:6px; margin-top:12px; flex-wrap:wrap; }
.pp-session-pagination .button { padding:6px 8px; font-size:13px; border-radius:6px; }
.pp-session-pagination .button.current { background:#4f46e5; color:white; }

.pp-session-item {
    border: 1px solid #eef2f7;
    padding: 12px;
    border-radius: 8px;
    background: #fafafa;
}

.pp-q-head {
    font-weight: 600;
    margin-bottom: 8px;
}

.pp-q-img img { max-width: 100%; border-radius: 6px; margin-bottom: 8px; }

.pp-q-answers { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }

.pp-q-opt { padding: 8px; border-radius: 6px; background: white; border: 1px solid #e6eef6; display: flex; justify-content: space-between; align-items: center; }
.pp-q-opt.answer-correct { border-color: #10b981; background: #ecfdf5; }
.pp-q-opt.answer-selected { border-color: #f59e0b; background: #fffbeb; }
.pp-q-explain { margin-top: 8px; color: #374151; font-size: 13px; }
.pp-q-meta { margin-top: 8px; font-size: 12px; color: #6b7280; }

.pp-no-items { padding: 12px; color: #64748b; }



/* Report button and modal */
.report-area{margin-top:12px}
.btn-report{background:#f97316;color:#fff;border:0;padding:8px 12px;border-radius:6px;cursor:pointer}
.btn-report i{margin-right:8px}

.pp-report-overlay{position:fixed;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.45);display:flex;align-items:center;justify-content:center;z-index:1500}
.pp-report-modal{background:#fff;padding:18px;border-radius:8px;max-width:640px;width:94%;box-shadow:0 8px 24px rgba(0,0,0,0.12)}
.pp-report-modal h3{margin-top:0;margin-bottom:8px}
.pp-report-modal textarea{width:100%;padding:8px;border:1px solid #e5e7eb;border-radius:6px}
.pp-report-actions{display:flex;justify-content:flex-end;gap:8px;margin-top:10px}
.pp-report-msg{font-size:14px}


.btn-view-all-activity {
    width: 100%;
    padding: 12px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-view-all-activity:hover {
    background: #e2e8f0;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}



/* Practice Session */
.practice-session {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.session-header h3 {
    margin: 0;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.session-meta {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.meta-item {
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #4f46e5;
}

.session-timer {
    background: #4f46e5;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transition: width 0.3s ease;
    border-radius: 5px;
}

.progress-text {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Question Container */
.question-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    min-height: 400px;
}

.question-display {
    font-size: 16px;
    line-height: 1.6;
}

.question-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.question-number {
    font-weight: bold;
    color: #4f46e5;
    font-size: 18px;
}

.question-category {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.question-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #2d3748;
    line-height: 1.6;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-item:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}

.option-item.selected {
    border-color: #4f46e5;
    background: #e0e7ff;
}

.option-item.correct {
    border-color: #10b981;
    background: #d1fae5;
}

.option-item.incorrect {
    border-color: #ef4444;
    background: #fee2e2;
}

.option-item input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.option-letter {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 15px;
}

.option-item.correct .option-letter {
    background: #10b981;
}

.option-item.incorrect .option-letter {
    background: #ef4444;
}

.option-text {
    flex: 1;
    font-size: 16px;
}

/* Answer Feedback */
.answer-feedback {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.feedback-correct {
    background: #d1fae5;
    border: 1px solid #34d399;
    color: #065f46;
}

.feedback-incorrect {
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feedback-details {
    font-size: 14px;
    line-height: 1.5;
}

.feedback-details strong {
    color: inherit;
}

/* Explanation */
.question-explanation {
    margin-top: 25px;
    padding: 20px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    color: #92400e;
}

.question-explanation h4 {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explanation-section {
    margin-bottom: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.explanation-section h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #111827;
}

.explanation-body {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.explanation-full {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

/* Navigation Controls */
.navigation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.btn-nav {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-prev {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-next {
    background: #4f46e5;
    color: white;
}

.btn-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.answer-status {
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

/* Session Controls */
.session-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-control {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-show-explanation {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.btn-skip {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.btn-end {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* No Session */
.no-session {
    text-align: center;
    padding: 60px 20px;
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #2d3748;
    margin: 0 0 15px 0;
}

.empty-state p {
    color: #64748b;
    margin: 0 0 30px 0;
    font-size: 16px;
    line-height: 1.6;
}

.quick-tips {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.tip {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    color: #4f46e5;
}

.tip i {
    font-size: 20px;
}

.tip span {
    font-size: 14px;
    color: #2d3748;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 80px 20px;
}

.loader {
    color: #4f46e5;
}

.loader-detail {
    color: #64748b;
    font-size: 14px;
    margin-top: 10px;
}

/* Modals */
.results-modal,
.activity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    margin: 0;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: #2d3748;
}

.modal-body {
    padding: 30px;
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .results-summary {
        grid-template-columns: repeat(4, 1fr);
    }
}

.result-stat {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #4f46e5;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
}

.performance-breakdown h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
}

.breakdown-content {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-action {
    flex: 1;
    min-width: 200px;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-review-answers {
    background: #4f46e5;
    color: white;
}

.btn-new-session {
    background: #10b981;
    color: white;
}

.btn-dashboard {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Activity Modal */
.activity-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.activity-filters select,
.activity-filters input {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
}

.activity-list-full {
    max-height: 500px;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 24px;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .session-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .session-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .navigation-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .session-controls {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-action {
        min-width: 100%;
    }
}
    