.my-quiz-form {
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.my-quiz-form .quiz-step {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.my-quiz-form p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.answer-option {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.answer-option input {
    display: none; /* скриваме радио бутона */
}

.answer-option span {
    display: block;
    background: #f4f4f4;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: 0.3s;
    font-size: 15px;
}

.answer-option:hover span {
    background: #e8f0fe;
    border-color: #007BFF;
}

.answer-option input:checked + span {
    background: #007BFF;
    color: white;
    border-color: #0056b3;
}

.my-quiz-form button {
    background: linear-gradient(90deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.my-quiz-form button:hover {
    background: linear-gradient(90deg, #45a049, #3e8e41);
}

#quiz-timer {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000000; /* Черен текст */
}

.my-quiz-result {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #f0f9ff;
    border-left: 6px solid #2196F3;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    text-align: center;
}

#start-quiz-btn {
    background: linear-gradient(90deg, #2196F3, #1976D2);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    margin: 0 auto 20px;
}

#start-quiz-btn:hover {
    background: linear-gradient(90deg, #1976D2, #1565C0);
}