/* Контейнер тесту */
.test-container {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
}

/* Шапка з годинником */
.test-header {
    border-left: 5px solid #dc3545; /* Червоний акцент як на твоїх кнопках */
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timer {
    font-size: 1.4rem;
    color: #dc3545;
    background: #fff5f5;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #feb2b2;
}

/* Картки питань */
.question {
    transition: transform 0.2s ease;
    border: 1px solid #e2e8f0;
}

.question:hover {
    border-color: #cbd5e0;
}

.question p {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 15px;
}

/* Стилізація радіокнопок */
.form-check {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: #f8fafc;
    cursor: pointer;
    border: 1px solid transparent;
}

.form-check:hover {
    background: #edf2f7;
}

.form-check-input:checked + .form-check-label {
    font-weight: 600;
    color: #2c5282;
}

/* Адаптивність для мобілок */
@media (max-width: 768px) {
    .test-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}