#pyq-quiz {
    max-width: 700px;
    margin: auto;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.pyq-question-number {
    font-weight: bold;
    margin-bottom: 8px;
}

.pyq-question-text {
    margin-bottom: 12px;
}

.pyq-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pyq-option {
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    background: #f7f7f7;
    font-size: 16px;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
}

.pyq-option:hover {
    background: #e0e0e0;
}

.pyq-option.selected,
.pyq-option:active {
    background-color: #333;
    color: white;
    border-color: #333;
    font-weight: bold;
}

#pyq-controls {
    margin-top: 20px;
    text-align: center;
}

#pyq-controls button {
    padding: 10px 20px;
    font-weight: bold;
    margin: 10px;
    cursor: pointer;
}
.pyq-attempt-count {
    background: #fff8dc;
    border-left: 5px solid #ffc107;
    color: #222;
    font-weight: bold;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 16px;
}
