.question-card {
            background: white;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.25rem;
            border: 1px solid #e9ecef;
            transition: all 0.2s;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        }
        .question-text {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 0.75rem;
            color: #2c3e50;
        }
        .option-group .form-check {
            margin-right: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .option-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }
        .score-pill {
            font-size: 2rem;
            font-weight: 800;
            color: #2c6e9e;
        }
        .severity-tag {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
        }
        .severity-minimal { background: #d1e7dd; color: #0f5132; }
        .severity-mild { background: #fff3cd; color: #856404; }
        .severity-moderate { background: #ffe5b4; color: #b65f00; }
        .severity-severe { background: #f8d7da; color: #842029; }
        .progress-custom {
            height: 12px;
            border-radius: 20px;
            background-color: #e9ecef;
        }
        .gad-chart-container {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1rem;
            margin-top: 1.5rem;
            text-align: center;
        }
        .disclaimer-note {
            font-size: 0.85rem;
            background-color: #fef9e6;
            border-left: 4px solid #f0ad4e;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .reference-badge {
            font-size: 0.8rem;
            background: #eef2ff;
            border-radius: 20px;
            padding: 0.2rem 0.8rem;
        }
        .btn-outline-accent {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        .btn-outline-accent:hover {
            background: var(--primary-color);
            color: white;
        }
        .result-highlight {
            background: linear-gradient(145deg, #f5f9ff, #ffffff);
            border-radius: 24px;
            padding: 1.5rem;
            border: 1px solid #e2edf7;
        }
        canvas.score-canvas {
            width: 100%;
            height: 100px;
            background: #ffffff;
            border-radius: 16px;
            margin-top: 0.5rem;
        }
        .resource-links {
            background: #f0f7ff;
            border-radius: 16px;
            padding: 1rem;
            margin: 1rem 0;
        }
        .resource-links a {
            text-decoration: none;
        }
        .limitations-note {
            background: #f8f9fa;
            border-left: 4px solid #6c757d;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
        }