/* /Interface/Cadre/CadreAdmin.razor.rz.scp.css */
/* Barre de l'admin — styles de web/src/App.svelte. */
.dashboard[b-gbs80gfgww] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar[b-gbs80gfgww] {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #d1dcd5;
    box-shadow: 0 1px 3px rgba(18, 30, 23, 0.04);
}

.brand[b-gbs80gfgww] {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0b5d3b;
    white-space: nowrap;
}

.version[b-gbs80gfgww] {
    font-size: 0.7rem;
    background: #e6f4ed;
    color: #0b5d3b;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.tabs[b-gbs80gfgww] {
    display: flex;
    gap: 4px;
    flex: 1;
}

.tabs[b-gbs80gfgww]  a {
    padding: 8px 16px;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: #465b50;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 150ms, border-color 250ms cubic-bezier(0.2, 0, 0, 1);
}

.tabs[b-gbs80gfgww]  a.active {
    color: #0b5d3b;
    border-bottom-color: #0b5d3b;
}

.tabs[b-gbs80gfgww]  a:hover {
    color: #0b5d3b;
}

.user[b-gbs80gfgww] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user form[b-gbs80gfgww] {
    margin: 0;
}

.role-badge[b-gbs80gfgww] {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    background: #e6f4ed;
    color: #0b5d3b;
}

.logout[b-gbs80gfgww] {
    background: none;
    border: 1px solid #0b5d3b;
    color: #0b5d3b;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.content[b-gbs80gfgww] {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

@media (max-width: 1279px) {
    .topbar[b-gbs80gfgww] { padding: 0 16px; gap: 12px; }
    .content[b-gbs80gfgww] { padding: 16px; }
    .tabs[b-gbs80gfgww] { overflow-x: auto; }
    .tabs[b-gbs80gfgww]  a { white-space: nowrap; font-size: 0.8rem; padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .tabs[b-gbs80gfgww]  a { transition: none; }
}
/* /Interface/Cadre/ReconnexionModale.razor.rz.scp.css */
/* Dialogue de reconnexion — modèle .NET 10 (ReconnectModal.razor.css), couleurs FENOPJERCI. */
.components-reconnect-first-attempt-visible[b-p8c1bt9upw],
.components-reconnect-repeated-attempt-visible[b-p8c1bt9upw],
.components-reconnect-failed-visible[b-p8c1bt9upw],
.components-pause-visible[b-p8c1bt9upw],
.components-resume-failed-visible[b-p8c1bt9upw],
.components-rejoining-animation[b-p8c1bt9upw] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-retrying[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-failed[b-p8c1bt9upw],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-p8c1bt9upw] {
    display: block;
}


#components-reconnect-modal[b-p8c1bt9upw] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-p8c1bt9upw 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-p8c1bt9upw 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-p8c1bt9upw 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-p8c1bt9upw]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-p8c1bt9upw 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-p8c1bt9upw {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-p8c1bt9upw {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-p8c1bt9upw {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-p8c1bt9upw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-p8c1bt9upw] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-p8c1bt9upw] {
    border: 0;
    background-color: #0b5d3b;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-p8c1bt9upw] {
        background-color: #084a2f;
    }

    #components-reconnect-modal button:active[b-p8c1bt9upw] {
        background-color: #0b5d3b;
    }

.components-rejoining-animation[b-p8c1bt9upw] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-p8c1bt9upw] {
        position: absolute;
        border: 3px solid #0b5d3b;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-p8c1bt9upw 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-p8c1bt9upw] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-p8c1bt9upw {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Interface/Composants/BadgeStatut.razor.rz.scp.css */
.badge[b-rhfopt6rof] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.badge.lg[b-rhfopt6rof] {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.icon[b-rhfopt6rof] {
    font-size: 0.9em;
}
/* /Interface/Composants/Bandeau.razor.rz.scp.css */
.notice[b-3vob0rao8j] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.msg[b-3vob0rao8j] {
    flex: 1;
}

.close[b-3vob0rao8j] {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
/* /Interface/Composants/CarteKpi.razor.rz.scp.css */
.kpi-card[b-1jntsdmsmc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: var(--fenop-surface-card, #ffffff);
    border-radius: 16px;
    border: none;
    box-shadow: var(--fenop-elevation-admin-card);
    text-align: left;
    text-decoration: none;
    cursor: default;
    transition: background-color 150ms ease-out, transform 150ms ease-out;
}

.kpi-card.clickable:hover[b-1jntsdmsmc] {
    background: var(--fenop-kpi-hover);
    transform: scale(1.02);
}

.kpi-card.clickable[b-1jntsdmsmc] {
    cursor: pointer;
}

.kpi-label[b-1jntsdmsmc] {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fenop-kpi-label);
}

.kpi-value[b-1jntsdmsmc] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fenop-kpi-value);
    line-height: 1.2;
}

.kpi-trend[b-1jntsdmsmc] {
    font-size: 0.8rem;
    font-weight: 600;
}

.kpi-trend.up[b-1jntsdmsmc] {
    color: var(--fenop-kpi-trend-up);
}

.kpi-trend.down[b-1jntsdmsmc] {
    color: var(--fenop-kpi-trend-down);
}

@media (prefers-reduced-motion: reduce) {
    .kpi-card[b-1jntsdmsmc] { transition: none; }
    .kpi-card.clickable:hover[b-1jntsdmsmc] { transform: none; }
}
/* /Interface/Composants/ChampsCategorie.razor.rz.scp.css */
/* Styles de web/src/lib/components/CategoryFields.svelte ; sous-tableaux pour les listes d'objets. */
.category-fields[b-ozyvwncica] { width: 100%; }
.category-title[b-ozyvwncica] { font-size: 1rem; font-weight: 700; color: #0b5d3b; margin: 0 0 12px; }
.fields-grid[b-ozyvwncica] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.field[b-ozyvwncica] { display: flex; flex-direction: column; gap: 4px; padding: 8px 0; border-bottom: 1px solid #eaefea; }
.field.full[b-ozyvwncica] { grid-column: 1 / -1; }
.field-label[b-ozyvwncica] { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #465b50; }
.field-value[b-ozyvwncica] { font-size: 0.875rem; color: #121e17; word-break: break-word; }
.field-value.placeholder[b-ozyvwncica] { color: #999; font-style: italic; }
.field-image[b-ozyvwncica] { display: flex; flex-direction: column; gap: 4px; }
.field-image a[b-ozyvwncica] {
    display: inline-block; width: 120px; height: 120px; border-radius: 8px; overflow: hidden; border: 1px solid #e6ece8;
    cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease;
}
.field-image a:hover[b-ozyvwncica] { transform: scale(1.03); box-shadow: 0 4px 12px rgba(11, 93, 59, 0.15); }
.field-image img[b-ozyvwncica] { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-name[b-ozyvwncica] { font-size: 0.72rem; color: #465b50; font-family: ui-monospace, monospace; word-break: break-all; }
.sub-table[b-ozyvwncica] { border-collapse: collapse; font-size: 0.875rem; min-width: 50%; }
.sub-table th[b-ozyvwncica] {
    text-align: left; padding: 6px 12px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; color: #465b50; border-bottom: 1px solid #e6ece8;
}
.sub-table td[b-ozyvwncica] { padding: 6px 12px; border-bottom: 1px solid #eaefea; color: #121e17; }
.empty-cat[b-ozyvwncica] { color: #999; font-style: italic; padding: 12px 0; }
@media (max-width: 1279px) { .fields-grid[b-ozyvwncica] { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .field-image a[b-ozyvwncica] { transition: none; } .field-image a:hover[b-ozyvwncica] { transform: none; } }
/* /Interface/Composants/Graphique.razor.rz.scp.css */
.chart-container[b-vvgmjt847z] {
    width: 100%;
    min-height: 200px;
}
/* /Interface/Composants/OngletsComptes.razor.rz.scp.css */
/* Sous-onglets de web/src/views/ComptesAudit.svelte. */
.sous-onglets[b-v10d2bn7i7] { display: flex; gap: 8px; margin-bottom: 24px; }
.sous-onglets a[b-v10d2bn7i7] {
    display: inline-block; padding: 8px 16px; border-bottom: 3px solid transparent; font-weight: 600; color: #465b50; text-decoration: none;
    font-size: 0.8333rem;
}
.sous-onglets a.active[b-v10d2bn7i7] { color: #0b5d3b; border-bottom-color: #0b5d3b; }
.sous-onglets a:hover[b-v10d2bn7i7] { color: #0b5d3b; }
/* /Interface/Composants/Pagination.razor.rz.scp.css */
.pagination[b-byjtaby2bo] { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 16px; }
.page-btn[b-byjtaby2bo] {
    background: #0b5d3b; color: #fff; border-radius: 8px; padding: 8px 16px; font-weight: 600; text-decoration: none;
    font-size: 0.8333rem;
}
.page-btn.disabled[b-byjtaby2bo] { opacity: 0.4; cursor: not-allowed; }
/* /Interface/Pages/AppEnregistrement.razor.rz.scp.css */
/* App Enregistrement — propre à la page ; styles communs des listes dans admin/admin.css (.liste). */
.filters select[name=region][b-sbqdzzsaxl] { max-width: 170px; } /* la plus longue région élargirait la barre au-delà d'une ligne */
.cats[b-sbqdzzsaxl] { font-weight: 600; }
/* /Interface/Pages/AppPaiement.razor.rz.scp.css */
/* App Paiement — propre à la page ; styles communs des listes dans admin/admin.css (.liste). */
.mono[b-gcpl8h4w0f] { font-family: ui-monospace, monospace; font-size: 0.8rem; }
.amount[b-gcpl8h4w0f] { font-weight: 700; text-align: right; }
.filters select[name=activite][b-gcpl8h4w0f] { max-width: 220px; }
/* /Interface/Pages/Audit.razor.rz.scp.css */
/* Journal d'audit — styles de web/src/views/ComptesAudit.svelte ; styles communs des listes dans admin/admin.css (.liste). */
.tableau-audit td[b-7rj2397051] { padding: 12px 16px; vertical-align: top; }
.tableau-audit tr[b-7rj2397051] { cursor: default; }
.tableau-audit .date[b-7rj2397051] { white-space: nowrap; }
.tableau-audit .code[b-7rj2397051], .tableau-audit .cible[b-7rj2397051] { font-family: ui-monospace, monospace; font-size: 0.8rem; }
.tableau-audit .cible[b-7rj2397051] { color: #465b50; word-break: break-all; }
/* /Interface/Pages/Comptes.razor.rz.scp.css */
/* Comptes — styles de web/src/views/ComptesAudit.svelte ; styles communs des listes dans admin/admin.css (.liste). */
.form-card[b-mtj3cszjs6] {
    background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--fenop-elevation-admin-card); margin-bottom: 24px;
}
.form-card h2[b-mtj3cszjs6] { font-size: 1.2rem; font-weight: 700; margin: 0 0 16px; }
.form-card[b-mtj3cszjs6]  .form-creation { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.form-card[b-mtj3cszjs6]  input, .form-card[b-mtj3cszjs6]  select {
    height: 40px; padding: 0 12px; border: 1px solid #b9c9bf; border-radius: 8px; font-size: 0.875rem; background: #fff;
}
.form-card[b-mtj3cszjs6]  input:focus, .form-card[b-mtj3cszjs6]  select:focus { outline: none; border-color: #0b5d3b; }
.tableau-comptes td[b-mtj3cszjs6] { padding: 12px 16px; }
.tableau-comptes tr[b-mtj3cszjs6] { cursor: default; }
.tableau-comptes form[b-mtj3cszjs6] { margin: 0; }
.tableau-comptes .btn-primary[b-mtj3cszjs6] { height: 32px; }
/* /Interface/Pages/Connexion.razor.rz.scp.css */
/* Carte de connexion — styles de web/src/App.svelte. */
.login-page[b-mftmlvixuj] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card[b-mftmlvixuj] {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(18, 30, 23, 0.15);
    width: 400px;
    max-width: 90vw;
    text-align: center;
}

.login-card h1[b-mftmlvixuj] {
    color: #0b5d3b;
    font-size: 1.8rem;
    margin: 0 0 4px;
}

.subtitle[b-mftmlvixuj] {
    color: #465b50;
    font-size: 0.875rem;
    margin: 0 0 24px;
}

.login-card[b-mftmlvixuj]  form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-card[b-mftmlvixuj]  input {
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d1dcd5;
    border-radius: 12px;
    font-size: 0.95rem;
}

.login-card[b-mftmlvixuj]  input:focus {
    outline: none;
    border-color: #0b5d3b;
}

.login-card[b-mftmlvixuj]  button {
    height: 52px;
    background: #0b5d3b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.login-card[b-mftmlvixuj]  .error {
    color: #d92d20;
    font-size: 0.875rem;
    margin: 0;
}
/* /Interface/Pages/DetailPaiement.razor.rz.scp.css */
/* Détail d'un paiement — styles de web/src/views/DetailPaiement.svelte ; styles communs des fiches dans admin/admin.css (.fiche). */
.ref-card[b-t533qdcq9g] { display: flex; justify-content: space-between; align-items: center; }
.ref[b-t533qdcq9g] { font-size: 1.2rem; font-weight: 700; }
.ref-info[b-t533qdcq9g] { display: flex; align-items: center; gap: 16px; }
.amount[b-t533qdcq9g] { font-weight: 800; font-size: 1.1rem; }
.timeline[b-t533qdcq9g] { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-item[b-t533qdcq9g] { display: flex; gap: 16px; padding: 8px 0; position: relative; }
.timeline-item:not(:last-child)[b-t533qdcq9g]::before {
    content: ''; position: absolute; left: 5px; top: 24px; bottom: -8px; width: 2px; background: #d1dcd5;
}
.dot[b-t533qdcq9g] { width: 12px; height: 12px; border-radius: 50%; background: #0b5d3b; flex-shrink: 0; margin-top: 4px; }
.dot.fail[b-t533qdcq9g] { background: #d92d20; }
.dot.success[b-t533qdcq9g] { background: #0b5d3b; }
.content[b-t533qdcq9g] { display: flex; flex-direction: column; gap: 2px; }
.time[b-t533qdcq9g] { font-size: 0.8rem; color: #465b50; }
.event[b-t533qdcq9g] { font-size: 0.9rem; font-weight: 600; color: #121e17; }
.recu[b-t533qdcq9g] {
    background: #f5f8f5; padding: 16px; border-radius: 8px; font-size: 0.85rem; white-space: pre-wrap;
    font-family: ui-monospace, monospace; margin: 0;
}
.recu-actions[b-t533qdcq9g] { display: flex; gap: 12px; margin-top: 12px; }
.recu-actions .btn-primary[b-t533qdcq9g] { display: inline-flex; align-items: center; height: 36px; text-decoration: none; font-size: 0.8333rem; }
.recu-actions .btn-secondary[b-t533qdcq9g] { height: 36px; }
.empty[b-t533qdcq9g] { color: #999; font-style: italic; }
@media print { .recu-actions[b-t533qdcq9g] { display: none; } }
/* /Interface/Pages/DetailPersonne.razor.rz.scp.css */
/* Détail d'une personne — propre à la page ; styles communs des fiches dans admin/admin.css (.fiche). */
.progress-list[b-2r58ay4yv3] { display: flex; flex-direction: column; gap: 12px; }
.progress-item[b-2r58ay4yv3] { display: flex; align-items: center; gap: 12px; }
.progress-label[b-2r58ay4yv3] { width: 200px; font-size: 0.8rem; font-weight: 600; color: #465b50; flex-shrink: 0; }
.progress-bar[b-2r58ay4yv3] { flex: 1; height: 12px; background: #eaefea; border-radius: 6px; overflow: hidden; }
.progress-fill[b-2r58ay4yv3] { height: 100%; background: #0b5d3b; border-radius: 6px; transition: width 350ms cubic-bezier(0.2, 0, 0, 1); }
.progress-status[b-2r58ay4yv3] { font-size: 0.8rem; font-weight: 600; color: #0b5d3b; width: 120px; }
.summary[b-2r58ay4yv3] { margin-top: 12px; font-weight: 700; color: #0b5d3b; }
.accordion[b-2r58ay4yv3] { border-bottom: 1px solid #e6ece8; }
.accordion-header[b-2r58ay4yv3] {
    display: flex; align-items: center; gap: 8px; padding: 12px 0; cursor: pointer; font-weight: 600; color: #121e17;
    list-style: none;
}
.accordion-header[b-2r58ay4yv3]::-webkit-details-marker { display: none; }
.accordion-icon[b-2r58ay4yv3] { width: 16px; }
.accordion-icon[b-2r58ay4yv3]::before { content: '▸'; }
.accordion[open] .accordion-icon[b-2r58ay4yv3]::before { content: '▾'; }
.check[b-2r58ay4yv3] { margin-left: auto; color: #0b5d3b; }
.accordion-content[b-2r58ay4yv3] { padding: 0 0 12px 24px; }
@media (prefers-reduced-motion: reduce) { .progress-fill[b-2r58ay4yv3] { transition: none; } }
/* /Interface/Pages/VueEnsemble.razor.rz.scp.css */
/* Vue d'ensemble — styles de web/src/views/VueEnsemble.svelte, jetons de 07-design-tokens-admin.md. */
.page[b-87yy90vyu2] {
    max-width: 1400px;
    margin: 0 auto;
}

h1[b-87yy90vyu2] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #121e17;
    margin: 0 0 4px;
}

.subtitle[b-87yy90vyu2] {
    font-size: 0.875rem;
    color: #465b50;
    margin: 0 0 24px;
}

.kpi-grid[b-87yy90vyu2] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fenop-admin-kpi-gap);
    margin-bottom: 24px;
}

.kpi-skeleton[b-87yy90vyu2] {
    height: 120px;
    background: #e6ece8;
    border-radius: 16px;
    animation: skeleton-pulse-b-87yy90vyu2 500ms ease-in-out infinite alternate;
}

@keyframes skeleton-pulse-b-87yy90vyu2 {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.chart-grid[b-87yy90vyu2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fenop-admin-chart-gap);
    margin-bottom: 24px;
}

.chart-card[b-87yy90vyu2] {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--fenop-elevation-admin-card);
}

.chart-card.full[b-87yy90vyu2] {
    grid-column: 1 / -1;
}

.chart-card h2[b-87yy90vyu2] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #121e17;
    margin: 0 0 16px;
}

.progress-list[b-87yy90vyu2] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-item[b-87yy90vyu2] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-label[b-87yy90vyu2] {
    width: 200px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #465b50;
    flex-shrink: 0;
}

.progress-bar[b-87yy90vyu2] {
    flex: 1;
    height: 12px;
    background: #eaefea;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill[b-87yy90vyu2] {
    height: 100%;
    background: #0b5d3b;
    border-radius: 6px;
    transition: width 350ms cubic-bezier(0.2, 0, 0, 1);
}

.progress-value[b-87yy90vyu2] {
    width: 40px;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0b5d3b;
}

.retry[b-87yy90vyu2] {
    margin: 12px 0;
    padding: 8px 16px;
    background: #0b5d3b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 1279px) {
    .kpi-grid[b-87yy90vyu2] { grid-template-columns: 1fr 1fr; }
    .chart-grid[b-87yy90vyu2] { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .kpi-skeleton[b-87yy90vyu2] { animation: none; opacity: 0.6; }
    .progress-fill[b-87yy90vyu2] { transition: none; }
}
