.pfas-page-container {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.pfas-layout {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 2rem;
}
@media (min-width: 1024px) {
    .pfas-layout { flex-direction: row; align-items: flex-start; }
}

.pfas-sidebar { width: 100%; }
@media (min-width: 1024px) {
    .pfas-sidebar { flex-shrink: 0; width: 300px; position: sticky; top: 2rem; }
}

.pfas-main-content { flex-grow: 1; min-width: 0; }

/* === BARRE DE PROGRESSION === */
.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e5e7eb; /* gray-200 */
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #3b82f6); /* de vert à bleu */
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 9999px;
}