* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

:root {
    --primary: #007bff;
    --secondary: #0056b3;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f9f9f9;
    --dark: #333;
    --border: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

header {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo #logoimage {
    width: 3em;
    height: 3em;
    margin-bottom: -1em;
    background: url('./images/bettervets_logo_trans.png') no-repeat center/cover;
}

.logo i {
    font-size: 1.8em;
}


.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a, .nav-menu button {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.nav-menu a:hover, .nav-menu button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary);
    min-width: 160px;
    box-shadow: var(--shadow-md);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero, .simHero {
    background: linear-gradient(to right, var(--primary), #00c6ff);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://localhost/vetalk/images/vet-with-dog-1920x400.jpg') no-repeat center/cover;
    opacity: 0.15;
    transition: opacity 0.3s;
}

.simHero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://localhost/vetalk/images/vetalk_snippet.png') no-repeat center/cover;
    opacity: 0.15;
    transition: opacity 0.3s;
}

.hero:hover:before, .simHero:hover:before {
    opacity: 0.25;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1, .simHero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero .intro, .simHero .intro {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.report-card {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, position 0.3s ease, top 0.3s ease, left 0.3s ease;
    cursor: pointer; /* Indicates it's clickable */
    position: relative; /* Default position */
}
.report-card.enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5); /* Center and scale */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stronger shadow for modal-like effect */
    z-index: 1000; /* High z-index to appear on top */
    overflow: auto; /* Allow scrolling if content overflows the enlarged card */
    max-width: 57vw; /* Prevent it from being too wide on large screens */
    max-height: 52vh; /* Prevent it from being too tall */
}
body:has(.report-card.enlarged)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 999; /* Below the enlarged card */
    pointer-events: none; /* Allow clicks through if needed */
}
/* Optional: Hover effect for non-enlarged cards */
.report-card.enlarged:hover {
    transform: translate(-50%, -50%) scale(1.5); /* Keep the same scale */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Keep the same shadow */
}

/* Optional: Hover effect for non-enlarged cards */
.report-card:hover:not(.enlarged) {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.enlarged-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 999; /* Below the enlarged card */
}

.report-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.report-card h4 {
    color: var(--primary);
    margin: 20px 0 10px;
}

#feedback-details {
    font-size: 1em;
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    background: var(--light);
}

#feedback-details::-webkit-scrollbar {
    width: 8px;
}

#feedback-details::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#feedback-details::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.feedback-item.vetalk {
    background-color: rgba(173, 216, 230, 0.1);
}

.feedback-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.feedback-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vetalk .app-label {
    color: var(--primary);
}

.app-label {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75em;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.score {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
}

.score-value {
    color: var(--danger);
}

h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.feedback-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: white;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.tab-btn:hover {
    background-color: #f9fafb;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: background 0.3s;
    border-bottom: 1px solid var(--border);
}

.criteria-item:hover {
    background: #f0f9ff;
}

.criteria-item:last-child {
    border-bottom: none;
}

.criteria-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.criteria-title strong {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.status {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.status.not-met {
    background-color: #fee2e2;
    color: var(--danger);
}

.description {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.suggestion {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.veview .app-label {
    color: #ff1493;
}

.feedback-item h3 {
    padding-right: 70px;
    word-wrap: break-word;
}

.feedback-item.veview {
    background-color: rgba(255, 182, 193, 0.1);
}

.feedback-heading {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.status.met {
    color: var(--success);
    background: #d4edda;
}

.status.incomplete {
    color: #ffc107;
    background: #fff3cd;
}

.status.met::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 5px;
}

.status.not-met::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 5px;
}

.status.incomplete::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 5px;
}

.score.score-high {
    color: var(--success);
    background: #d4edda;
}

.score.score-medium {
    color: var(--warning);
    background: #fff3cd;
}

.score.score-low {
    color: var(--danger);
    background: #f8d7da;
}

.score.score-missing {
    color: #6c757d;
    background: #e9ecef;
}

#completed-stats {
    font-size: 1.2em;
    color: var(--dark);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
}

#completed-stats:hover {
    transform: translateY(-3px);
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

.reports-main {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.reports-main h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 2.8em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.report-card h2 {
    font-size: 1.6em;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.feedback-section {
    grid-column: 1 / -1;
    order: -1;
}

.chart-section {
    grid-column: 1 / -1;
}

.completed-section {
    grid-column: 1 / -1;
}

.progress-section {
    grid-column: span 1;
}

.outcome-section {
    grid-column: span 1;
}

.comparative-section {
    grid-column: span 1;
}

.class-summary-section {
    grid-column: 1 / -1;
}

.student-monitoring-section {
    grid-column: 1 / -1;
}

.cohort-comparison-section {
    grid-column: span 1;
}

.usage-analytics-section {
    grid-column: 1 / -1;
}

.progress-container {
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 20px;
}

.progress-bar {
    background: var(--primary);
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.chart-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    height: 300px;
    margin-bottom: 20px;
}

#evaluation-chart {
    min-width: 400px;
    height: 300px;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.pagination button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#prev-page, #next-page {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

#prev-page::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#next-page::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#prev-page:hover, #next-page:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

#prev-page:disabled, #next-page:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    padding-right: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInScale 0.3s ease-out;
}

.close {
    position: absolute;
    top: 0px;
    right: 12px;
    color: #666;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
}

#transcript-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    max-height: 60vh;
    scrollbar-width: thin;
    overflow-y: auto;
}

#transcript-content::-webkit-scrollbar {
    width: 6px;
}

#transcript-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#transcript-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.message {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 20px;
    line-height: 1.5;
    font-size: 1em;
    position: relative;
}

.assistant-message {
    align-self: flex-start;
    background: #dcf8c6;
    border: 1px solid #b8e994;
    color: #333;
}

.view-report-btn, .student-transcript-btn {
    background-color: var(--primary);
    color: var(--light);
}
.user-message {
    align-self: flex-end;
    background: #e9f7ff;
    border: 1px solid #bee3ff;
    color: #333;
}

.message span {
    display: block;
}
.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: #666;
    transition: color 0.3s;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.student-list-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.student-list-section h3 {
    font-size: 1.8em;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: var(--light);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.toggle-group:hover {
    box-shadow: var(--shadow-md);
}

.toggle-group label {
    font-weight: 600;
    color: var(--dark);
}

.toggle-group input[type="checkbox"] {
    width: auto;
    height: 20px;
    width: 40px;
    appearance: none;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-group input[type="checkbox"]:checked {
    background: var(--primary);
}

.toggle-group input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-group input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.search-group {
    margin-bottom: 20px;
}

.search-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1em;
}

.search-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.student-list-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.student-list-box::-webkit-scrollbar {
    width: 6px;
}

.student-list-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.student-list-box::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.student-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.student-list li {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.student-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.student-list li:last-child {
    margin-bottom: 0;
}

.student-name {
    font-weight: 600;
    color: var(--dark);
}

.student-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.student-status.active {
    background: #d4edda;
    color: var(--success);
}

.student-status.inactive {
    background: #f8d7da;
    color: var(--danger);
}

.no-students {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

button, .tab-button {
    color: var(--dark);
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

button:hover, .tab-button:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-2px);
}

.tab-button.active {
    border-bottom: 2px solid var(--success);
    color: var(--primary);
    border-bottom: 2px solid var(--success);
}

.chart-container canvas {
    transition: transform 0.3s;
}



button:focus, a:focus, input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

[role="dialog"] {
    outline: none;
}

.feedback-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.feedback-filters input, .feedback-filters select {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    flex: 1;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    font-size: 1.2em;
    color: var(--primary);
}

.sortable th {
    cursor: pointer;
    user-select: none;
}

.sortable th::after {
    content: '\f0dc';
    font-family: 'Font Awesome 6 Free';
    margin-left: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: var(--primary);
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        display: block;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .report-card {
        padding: 20px;
    }

    .feedback-item {
        padding: 15px;
    }

    .criteria-item {
        padding: 10px;
    }

    .reports-main h1 {
        font-size: 2em;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }

    #transcript-content {
        padding: 15px;
    }

    .message {
        max-width: 90%;
        padding: 12px 15px;
    }
}
/* Add to your stylesheet */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.metric-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}
.metric-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}
.metric-card span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}
.app-breakdown {
    margin-top: 1rem;
}
#app-breakdown-chart {
    max-height: 300px;
}
/*
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(to bottom, #1a1a1a, #000000);
        color: #ddd;
    }

    :root {
        --light: #222;
        --dark: #ddd;
        --border: #444;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    header {
        background-color: #0062cc;
        box-shadow: var(--shadow-md);
    }

    .hero, .simHero {
        background: linear-gradient(to right, #0062cc, #0099cc);
        color: #eee;
    }

    .report-card {
        background: #222;
        box-shadow: var(--shadow-sm);
    }

    .report-card h2, .report-card h3, .report-card h4 {
        color: #4da6ff;
    }

    #feedback-details {
        background: #2a2a2a;
    }

    #feedback-details::-webkit-scrollbar-track {
        background: #333;
    }

    #feedback-details::-webkit-scrollbar-thumb {
        background: #4da6ff;
    }

    .feedback-item {
        background: #2a2a2a;
        border-color: var(--border);
        box-shadow: var(--shadow-sm);
    }

    .feedback-item:hover {
        box-shadow: var(--shadow-md);
    }

    .feedback-item.vetalk {
        background-color: rgba(173, 216, 230, 0.05);
    }

    .feedback-item.veview {
        background-color: rgba(255, 182, 193, 0.05);
    }

    .app-label {
        background-color: rgba(0, 0, 0, 0.5);
        color: #ddd;
    }

    .score {
        background-color: #333;
        color: #bbb;
    }

    h3 {
        color: #eee;
    }

    .tab-btn {
        background-color: #2a2a2a;
        color: #bbb;
        border-color: var(--border);
    }

    .tab-btn:hover {
        background-color: #333;
    }

    .tab-btn.active {
        background-color: #0062cc;
        color: white;
        border-color: #0062cc;
    }

    .criteria-item {
        background: #333;
        border-left-color: #4da6ff;
        border-bottom-color: #444;
    }

    .criteria-item:hover {
        background: #3a3a3a;
    }

    .criteria-title strong {
        color: #ddd;
    }

    .description {
        color: #aaa;
    }

    .suggestion {
        color: #888;
    }

    .status.met {
        background: #1a3a1a;
        color: #90ee90;
    }

    .status.not-met {
        background: #3a1a1a;
        color: #ff8080;
    }

    .status.incomplete {
        background: #3a3a1a;
        color: #ffff80;
    }

    .score.score-high {
        background: #1a3a1a;
        color: #90ee90;
    }

    .score.score-medium {
        background: #3a3a1a;
        color: #ffff80;
    }

    .score.score-low {
        background: #3a1a1a;
        color: #ff8080;
    }

    .score.score-missing {
        background: #333;
        color: #aaa;
    }

    #completed-stats {
        background: #222;
        color: #ddd;
        box-shadow: var(--shadow-sm);
    }

    footer {
        background: #0062cc;
    }

    .reports-main h1 {
        color: #4da6ff;
    }

    .progress-container {
        background: #444;
    }

    .progress-bar {
        background: #4da6ff;
    }

    .pagination button {
        background-color: #0062cc;
        color: white;
    }

    .pagination button:hover {
        background-color: #004080;
    }

    .pagination button:disabled {
        background-color: #555;
    }

    .modal-content {
        background-color: #222;
        box-shadow: var(--shadow-lg);
    }

    .close {
        color: #aaa;
    }

    .close:hover {
        color: #eee;
    }

    #transcript-content {
        background: #2a2a2a;
    }

    #transcript-content::-webkit-scrollbar-track {
        background: #333;
    }

    #transcript-content::-webkit-scrollbar-thumb {
        background: #4da6ff;
    }

    .assistant-message {
        background: #1a3a1a;
        border-color: #305030;
        color: #ddd;
    }

    .user-message {
        background: #1a2a3a;
        border-color: #304050;
        color: #ddd;
    }

    .tabs {
        border-bottom-color: #444;
    }

    .tab-button {
        color: #aaa;
    }

    .tab-button.active {
        color: #eee;
        border-bottom-color: #90ee90;
    }

    .student-list-section {
        background: #222;
        box-shadow: var(--shadow-sm);
    }

    .student-list-section h3 {
        color: #4da6ff;
    }

    .toggle-group {
        background: #2a2a2a;
        border-color: var(--border);
    }

    .toggle-group label {
        color: #ddd;
    }

    .toggle-group input[type="checkbox"] {
        background: #555;
    }

    .toggle-group input[type="checkbox"]:checked {
        background: #4da6ff;
    }

    .toggle-group input[type="checkbox"]::before {
        background: #ddd;
    }

    .search-group input {
        background: #2a2a2a;
        border-color: var(--border);
        color: #ddd;
    }

    .search-group input:focus {
        border-color: #4da6ff;
        box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
    }

    .student-list-box {
        background: #2a2a2a;
        border-color: var(--border);
    }

    .student-list-box::-webkit-scrollbar-track {
        background: #333;
    }

    .student-list-box::-webkit-scrollbar-thumb {
        background: #4da6ff;
    }

    .student-list li {
        background: #333;
        border-color: var(--border);
    }

    .student-list li:hover {
        box-shadow: var(--shadow-md);
    }

    .student-name {
        color: #ddd;
    }

    .student-status.active {
        background: #1a3a1a;
        color: #90ee90;
    }

    .student-status.inactive {
        background: #3a1a1a;
        color: #ff8080;
    }

    .no-students {
        color: #aaa;
        background: #333;
    }

    button, .tab-button {
        color: #eee;
    }

    button:hover, .tab-button:hover {
        background-color: #004080;
    }

    .feedback-filters input, .feedback-filters select {
        background: #2a2a2a;
        border-color: var(--border);
        color: #ddd;
    }

    .loader {
        background: rgba(0, 0, 0, 0.8);
        color: #4da6ff;
    }
}
*/