/* گزینه‌های آزمون */
.gq-option-card {
    border: 2px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.gq-option-card.selected {
    border: 4px solid #3182ce !important; /* آبی ضخیم */
    background: #ebf8ff;
}

.gq-option-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* کارنامه گرافیکی */
.gq-report-card {
    background: #f8fafc;
    border: 1px solid #cbd5e0;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.gq-progress-bar {
    background: #edf2f7;
    height: 25px;
    border-radius: 50px;
    overflow: hidden;
    margin: 10px 0;
}

.gq-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #3182ce);
    transition: width 1.5s ease;
}