/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --success: #10b981;
    --success-light: #d1fae5;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Grayscale */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
.header {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.header-stats {
    display: flex;
    gap: var(--space-md);
}

.stat-badge {
    background: var(--primary-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 80px;
    border: 2px solid var(--primary);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
}

.screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

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

/* ===== START SCREEN ===== */
.start-screen {
    text-align: center;
}

.screen-header {
    margin-bottom: var(--space-2xl);
}

.screen-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.screen-header h2 i {
    color: var(--primary);
}

.screen-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.test-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.test-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.test-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.test-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.test-card.featured {
    border-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.test-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 4px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.test-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-card.featured .test-icon {
    color: var(--secondary);
}

.test-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.test-description {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.test-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.meta-item i {
    color: var(--primary);
}

.test-tag {
    display: inline-block;
    background: var(--warning-light);
    color: var(--warning);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--space-sm);
}

.start-button-container {
    margin-bottom: var(--space-2xl);
}

.btn-primary, .btn-secondary, .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-primary .btn-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: var(--space-sm);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

.btn-lg {
    padding: var(--space-xl) var(--space-2xl);
    font-size: 1.25rem;
}

.keyboard-hint {
    margin-top: var(--space-md);
    color: var(--gray-500);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.quick-tips {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.quick-tips .tip {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.quick-tips .tip:last-child {
    margin-bottom: 0;
}

.quick-tips .tip i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ===== QUIZ SCREEN ===== */
.quiz-header {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.quiz-progress {
    flex: 1;
    min-width: 300px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.progress-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.progress-bar-container {
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    width: 0%;
}

.quiz-stats {
    display: flex;
    gap: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--gray-600);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.quiz-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.question-container {
    margin-bottom: var(--space-2xl);
}

.question-image {
    max-width: 300px;
    height: 200px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    object-fit: contain;
    background: var(--gray-50);
    padding: var(--space-md);
    display: block;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xl);
    text-align: center;
    line-height: 1.4;
}

.options-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .options-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option {
    padding: var(--space-lg);
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.option:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.option.correct {
    border-color: var(--success);
    background: var(--success-light);
}

.option.incorrect {
    border-color: var(--danger);
    background: #fee2e2;
}

.option-number {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.option.selected .option-number {
    background: var(--primary);
    color: white;
}

.option.correct .option-number {
    background: var(--success);
    color: white;
}

.option.incorrect .option-number {
    background: var(--danger);
    color: white;
}

.option-text {
    flex: 1;
    line-height: 1.5;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.keyboard-help {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.keyboard-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.keyboard-item kbd {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.keyboard-item span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===== RESULTS SCREEN ===== */
.results-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.results-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.results-header h2 i {
    color: var(--primary);
}

.results-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.score-display {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.score-circle {
    width: 200px;
    height: 200px;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 0%, var(--gray-200) 0% 100%);
    animation: scoreFill 1.5s ease-out forwards;
}

@keyframes scoreFill {
    from { background: conic-gradient(var(--primary) 0% 0%, var(--gray-200) 0% 100%); }
}

.score-circle-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.score-percent {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.score-label {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-status h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.score-status .pass {
    color: var(--success);
}

.score-status .fail {
    color: var(--danger);
}

.result-message {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 400px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.correct {
    background: var(--success-light);
    color: var(--success);
}

.stat-icon.incorrect {
    background: #fee2e2;
    color: var(--danger);
}

.stat-icon.time {
    background: var(--info-light);
    color: var(--info);
}

.stat-icon.attempt {
    background: var(--warning-light);
    color: var(--warning);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.results-details {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.results-details h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.detail-item {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.detail-label {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.review-section {
    margin-bottom: var(--space-2xl);
}

.review-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: var(--space-sm);
}

.review-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gray-300);
}

.review-item.correct {
    border-left-color: var(--success);
}

.review-item.incorrect {
    border-left-color: var(--danger);
}

.review-question {
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--gray-900);
}

.review-question i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.review-question.correct i {
    color: var(--success);
}

.review-question.incorrect i {
    color: var(--danger);
}

.review-image {
    max-width: 200px;
    height: 150px;
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    object-fit: contain;
    background: var(--gray-50);
    padding: var(--space-sm);
}

.review-answer {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    font-size: 0.95rem;
}

.review-answer.correct {
    background: var(--success-light);
    border-left: 4px solid var(--success);
}

.review-answer.incorrect {
    background: #fee2e2;
    border-left: 4px solid var(--danger);
}

.review-explanation {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--info-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--info);
    font-size: 0.95rem;
}

.review-explanation strong {
    color: var(--gray-900);
}

.results-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .app-container {
        padding: var(--space-sm);
    }
    
    .header {
        padding: var(--space-md);
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-stats {
        justify-content: center;
    }
    
    .test-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-header {
        flex-direction: column;
        text-align: center;
    }
    
    .quiz-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .score-display {
        flex-direction: column;
        text-align: center;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .results-actions .btn-primary,
    .results-actions .btn-secondary {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .quiz-navigation {
        flex-direction: column;
    }
    
    .quiz-navigation button {
        width: 100%;
    }
    
    .keyboard-help {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .question-image {
        max-width: 100%;
        height: 150px;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-circle-inner {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .score-percent {
        font-size: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}
