#cq-quiz-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 2px solid #0073aa;
    border-radius: 12px;
    background: #f5faff;
    font-family: 'Segoe UI', sans-serif;
}

#quiz-box, #quiz-result {
    margin-top: 20px;
}

#quiz-time, input[type="radio"] {
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #005f8d;
}

.option-label {
    background: #ffffff;
    display: block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    margin: 6px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.option-label:hover {
    background: #e9f5ff;
}

.result-box {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.score-circle {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.gold {
    background: linear-gradient(45deg, #ffd700, #ffbb00);
}
.silver {
    background: linear-gradient(45deg, #c0c0c0, #a9a9a9);
}
.bronze {
    background: linear-gradient(45deg, #cd7f32, #b87333);
}
.none {
    background: #ccc;
}

.reward-msg {
    font-size: 18px;
    margin-top: 15px;
    color: #333;
}

.animate-fade {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.correct-opt {
    color: green;
    font-weight: bold;
}
.your-wrong {
    color: red;
    font-weight: bold;
}
.answer-item {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
}
#timer-box {
    font-size: 18px;
    color: #d9534f;
}
