.test-body {
    background: #f8f9fa !important;
}

.question-number {
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.navbar-text {
    margin-right: 10px !important;
}

/* .relative  svg {
    width: 14px;
    height: 14px;
} */

.flex.justify-between.flex-1 {
    display: none;
}

.btn-group .btn {
    margin-right: 2px !important;
}

.badge {
    color: black !important;
}

.option-label {
    transition: all 0.2s ease;
    user-select: none;
}

.option-label input[type="radio"] {
    margin-right: 10px;
}

.warning-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { background-color: #dc3545; }
    51%, 100% { background-color: #721c24; }
}

.timer-critical {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Prevent text selection during test */
.test-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Custom scrollbar */
.test-container::-webkit-scrollbar {
    width: 8px;
}

.test-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.test-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.test-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}