/**
 * pn_questionnaire — base styles
 *
 * Intentionally minimal. Override everything via your site package stylesheet.
 * Loaded via f:asset.css in Layouts/Default.html.
 */

/* ── Progress bar ─────────────────────────────────────────────────────────── */

.pn-questionnaire__progress-bar {
    position: relative;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-block: 0.75rem;
}

.pn-questionnaire__progress-fill {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    height: 100%;
    background-color: currentColor; /* inherits the site's primary text/brand colour */
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pn-questionnaire__progress-note,
.pn-questionnaire__help-text {
    font-size: 0.9rem;
}

.pn-questionnaire__question-text p:last-of-type {
    margin-bottom: 0;
}
