/* ============================================================
STATUT24 — status-dashboard.css
Version 2.2 — nettoyée
============================================================ */


/* ============================================================
1. PAGE
============================================================ */

.sm-status-page {
    background: #fff;
}

.sm-status-dashboard,
.sm-status-content {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ============================================================
2. CARTES
============================================================ */

.sm-dashboard-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
}

.sm-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.sm-card-heading h2 {
    margin: 5px 0 0;
    font-size: 24px;
    line-height: 1.25;
    color: #111827;
}

.sm-eyebrow {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}


/* ============================================================
3. BADGE TECHNIQUE
============================================================ */

.sm-live-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.sm-live-badge.is-up {
    background: #ecfdf3;
    color: #18794e;
}

.sm-live-badge.is-limited {
    background: #fff7e6;
    color: #a15c00;
}

.sm-live-badge.is-down {
    background: #fff1f2;
    color: #b42318;
}


/* ============================================================
4. VÉRIFICATION TECHNIQUE
============================================================ */

.sm-tech-result {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 14px;
}

.sm-tech-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    background: #e2e8f0;
    color: #475569;
}

.sm-tech-icon.is-up {
    background: #dcfce7;
    color: #15803d;
}

.sm-tech-icon.is-limited {
    background: #fef3c7;
    color: #b45309;
}

.sm-tech-icon.is-down {
    background: #fee2e2;
    color: #b91c1c;
}

.sm-tech-icon.is-unknown {
    background: #e2e8f0;
    color: #475569;
}

.sm-tech-copy {
    min-width: 0;
}

.sm-tech-copy h3 {
    margin: 0 0 6px;
    line-height: 1.3;
    color: #111827;
}

.sm-tech-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #64748b;
}

.sm-tech-details {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
    color: #64748b;
}

.sm-tech-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: #64748b;
    font-size: 14px;
}

.sm-tech-meta strong {
    color: #334155;
}

.sm-tech-help {
    margin: 0;
    border-top: 1px solid #eef2f7;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}


/* ============================================================
5. BOUTON TECHNIQUE
============================================================ */

.sm-status-page .sm-check {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.sm-status-page .sm-check-btn {
    display: inline-flex;
    width: auto;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 18px;
    border: 0;
    border-radius: 9px;
    background: #0877c9;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background .15s ease,
        transform .15s ease;
}

.sm-status-page .sm-check-btn:hover {
    background: #0668b1;
}

.sm-status-page .sm-check-btn:active {
    transform: translateY(1px);
}


/* ============================================================
6. PROGRESSION
============================================================ */

.sm-status-page .sm-progress {
    width: 100%;
    height: 4px;
    margin: 0;
    overflow: hidden;
    border-radius: 999px;
    background: #eef2f7;
    opacity: 0;
    transition: opacity .2s ease;
}

.sm-status-page .sm-progress.active {
    opacity: 1;
}

.sm-status-page .sm-progress::before {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: #38bdf8;
    transform: translateX(-120%);
}

.sm-status-page .sm-progress.active::before {
    animation: smProgressMove 1.1s ease-in-out infinite;
}

@keyframes smProgressMove {

    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(275%);
    }
}


/* ============================================================
7. UTILISATEURS — TOTAL
============================================================ */

.sm-report-total {
    min-width: 92px;
    text-align: right;
}

.sm-report-total strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #111827;
}

.sm-report-total span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.sm-users-summary {
    margin: -2px 0 14px;
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}


/* ============================================================
8. UTILISATEURS — RÉSULTATS
============================================================ */

.sm-user-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
}

.sm-user-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-height: 48px;
    padding: 10px 14px;

    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.sm-user-result-label {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;

    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.sm-user-status-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;

    border-radius: 50%;
    background: #94a3b8;
}

.sm-user-result-row.is-ok .sm-user-status-dot {
    background: #4CAF50;
}

.sm-user-result-row.is-down .sm-user-status-dot {
    background: #F44336;
}

.sm-user-result-row.is-slow .sm-user-status-dot {
    background: #FF9800;
}

.sm-user-result-row.is-login .sm-user-status-dot {
    background: #eab308;
}

.sm-user-result-count {
    min-width: 36px;
    padding: 6px 10px;

    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;

    color: #1e293b;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}


/* ============================================================
9. UTILISATEURS — VOTE
============================================================ */

.sm-user-question {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eef2f7;
}

.sm-user-question h3 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.25;
    color: #1f2937;
}

.sm-user-question p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}


/* Boutons 2 × 2 */

.sm-user-vote-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sm-user-vote-btn {
    width: 100%;
    min-width: 0;
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 13px;

    border: 1px solid #dbe3ec;
    border-radius: 9px;
    background: #fff;

    color: #334155;
    font-size: 14px;
    font-weight: 600;

    box-sizing: border-box;
    cursor: pointer;

    transition:
        transform .15s ease,
        border-color .15s ease,
        background .15s ease,
        color .15s ease,
        opacity .15s ease;
}


/* Tout fonctionne */

.sm-user-vote-btn.is-ok {
    border-color: #73c99b;
    background: #eefaf3;
    color: #147a4b;
}

.sm-user-vote-btn.is-ok:hover {
    background: #def5e8;
    color: #15803d;
}


/* Inaccessible */

.sm-user-vote-btn.is-down {
    border-color: #f0a3a3;
    background: #fff1f1;
    color: #b42318;
}

.sm-user-vote-btn.is-down:hover {
    background: #ffe4e4;
    color: #dc2626;
}


/* Lenteurs */

.sm-user-vote-btn.is-slow {
    border-color: #f4c26b;
    background: #fff7e8;
    color: #9a5b00;
}

.sm-user-vote-btn.is-slow:hover {
    background: #ffedc7;
    color: #c76a00;
}


/* Connexion */

.sm-user-vote-btn.is-login {
    border-color: #e7cf63;
    background: #fffbea;
    color: #826b00;
}

.sm-user-vote-btn.is-login:hover {
    background: #fff3bd;
    color: #a87800;
}


/* Bouton sélectionné */

.sm-user-vote-btn.is-selected {
    box-shadow: inset 0 0 0 2px currentColor;
    font-weight: 700;
}

/* ============================================================
10. MESSAGE VOTE
============================================================ */

.sm-user-vote-message {
    min-height: 22px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
}

.sm-user-vote-message.is-success {
    color: #18794e;
}

.sm-user-vote-message.is-info {
    color: #475569;
}

.sm-user-vote-message.is-loading {
    color: #64748b;
}

.sm-user-vote-message.is-error {
    color: #b42318;
}


/* ============================================================
11. HISTORIQUE — RÉSUMÉ
============================================================ */

.sm-history-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
}

.sm-history-summary span {
    display: inline-flex;
    align-items: center;

    min-height: 32px;
    padding: 6px 11px;

    border-radius: 999px;
    background: #f1f5f9;

    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.sm-history-summary span:first-child {
    background: #eef2f7;
    color: #334155;
}

.sm-history-summary span strong {
    margin-right: 4px;
    color: #111827;
    font-size: 14px;
}

.sm-history-summary span.is-up {
    background: #ecfdf3;
    color: #18794e;
}

.sm-history-summary span.is-limited {
    background: #fff7e6;
    color: #a15c00;
}

.sm-history-summary span.is-down {
    background: #fff1f2;
    color: #b42318;
}


/* ============================================================
12. HISTORIQUE — GRAPH
============================================================ */

.sm-history-chart {
    min-height: 90px;
}

.sm-history-bars {
    display: grid;
    grid-template-columns: repeat(24, minmax(4px, 1fr));
    align-items: end;

    height: 46px;
    gap: 4px;
}

.sm-history-bar {
    display: block;
    width: 100%;
    height: 100%;

    border-radius: 5px;
    background: #e2e8f0;

    transition:
        transform .15s ease,
        opacity .15s ease;
}

.sm-history-bar:hover {
    transform: translateY(-2px);
    opacity: .86;
}

.sm-history-bar.is-up {
    background: #53c783;
}

.sm-history-bar.is-limited {
    background: #f4b942;
}

.sm-history-bar.is-down {
    background: #ef6a6a;
}

.sm-history-bar.is-unknown {
    background: #dfe5ec;
}


/* ============================================================
13. HISTORIQUE — AXE
============================================================ */

.sm-history-axis {
    display: flex;
    justify-content: space-between;

    margin-top: 6px;

    color: #94a3b8;
    font-size: 11px;
}


/* ============================================================
14. HISTORIQUE — LÉGENDE
============================================================ */

.sm-history-legend {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 16px;

    margin-top: 12px;
    padding-top: 11px;

    border-top: 1px solid #eef2f7;

    color: #64748b;
    font-size: 12px;
}

.sm-history-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sm-history-legend i,
.sm-event-dot {
    display: inline-block;

    width: 9px;
    height: 9px;
    min-width: 9px;

    border-radius: 50%;
    background: #cbd5e1;
}

.sm-history-legend .is-up,
.sm-event-dot.is-up {
    background: #53c783;
}

.sm-history-legend .is-limited,
.sm-event-dot.is-limited {
    background: #f4b942;
}

.sm-history-legend .is-down,
.sm-event-dot.is-down {
    background: #ef6a6a;
}

.sm-history-legend .is-unknown,
.sm-event-dot.is-unknown {
    background: #cbd5e1;
}


/* ============================================================
15. HISTORIQUE — DERNIÈRES VÉRIFICATIONS
============================================================ */

.sm-history-events {
    margin-top: 16px;
}

.sm-history-events h3 {
    margin: 0 0 7px;
    color: #334155;
    font-size: 16px;
}

.sm-history-list {
    border-top: 1px solid #eef2f7;
}

.sm-history-event {
    display: grid;

    grid-template-columns:
        12px
        58px
        minmax(140px, 1fr)
        auto;

    align-items: center;
    gap: 10px;

    min-height: 36px;

    border-bottom: 1px solid #eef2f7;

    color: #475569;
    font-size: 13px;
}

.sm-event-time {
    color: #334155;
    font-weight: 700;
}

.sm-event-label {
    color: #475569;
}

.sm-event-http {
    color: #94a3b8;
    text-align: right;
}

/* ============================================================
16. HISTORIQUE — PAS DE DONNÉES
============================================================ */

.sm-history-empty {
    display: grid;
    place-items: center;

    min-height: 78px;
    padding: 14px;

    border: 1px dashed #cbd5e1;
    border-radius: 12px;

    color: #64748b;
    font-size: 14px;
    text-align: center;
}


/* ============================================================
17. CONTENU SEO / FAQ
============================================================ */

.sm-status-content {
    padding-top: 12px;
    padding-bottom: 10px;
}


/* Ancien bouton de vérification du contenu SEO */

.sm-status-page
.sm-status-content
.sm-faq-page > .sm-btn {
    display: none;
}


.sm-status-page
.sm-status-content
.sm-faq-page {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}


/* ============================================================
18. TABLETTES
============================================================ */

@media (max-width: 768px) {

    .sm-status-dashboard,
    .sm-status-content {
        padding-left: 15px;
        padding-right: 15px;
    }


    .sm-dashboard-card {
        padding: 20px;
        border-radius: 15px;
    }


    .sm-card-heading {
        gap: 14px;
        margin-bottom: 18px;
    }


    .sm-card-heading h2 {
        font-size: 21px;
    }


    .sm-live-badge {
        min-height: 30px;
        padding: 6px 9px;
        font-size: 11px;
    }


    .sm-tech-result {
        align-items: flex-start;
    }


    .sm-tech-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 22px;
    }


    .sm-tech-meta {
        flex-direction: column;
        gap: 6px;
    }


    .sm-status-page .sm-check,
    .sm-status-page .sm-check-btn {
        width: 100%;
    }


    .sm-history-summary {
        gap: 6px;
    }


    .sm-history-summary span {
        font-size: 11px;
    }


    .sm-history-bars {
        gap: 2px;
        height: 42px;
    }


    .sm-history-event {
        grid-template-columns:
            10px
            50px
            1fr;

        gap: 8px;
        padding: 8px 0;
    }


    .sm-event-http {
        grid-column: 3;
        text-align: left;
        font-size: 12px;
    }
}


/* ============================================================
19. SMARTPHONES
============================================================ */

@media (max-width: 480px) {

    .sm-card-heading {
        flex-direction: column;
    }


    .sm-report-total {
        min-width: 0;
        text-align: left;
    }


    .sm-report-total strong {
        font-size: 26px;
    }


    .sm-user-result-row {
        min-height: 54px;
        padding: 12px 14px;
    }


    .sm-user-question h3 {
        font-size: 20px;
    }


    .sm-history-summary {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .sm-history-summary span {
        justify-content: center;
        text-align: center;
    }


    .sm-history-axis span:nth-child(2),
    .sm-history-axis span:nth-child(4) {
        display: none;
    }
}

/* ============================================================
   ÉTAT GLOBAL — Statut24
============================================================ */

.sm-global-status {
    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 100%;
    margin: 0 0 22px;
    padding: 22px 26px;

    background: #f7f9fc;
    border: 1px solid #dfe5ec;
    border-radius: 16px;

    box-sizing: border-box;

    transition:
        background-color .25s ease,
        border-color .25s ease;
}


/* ------------------------------------------------------------
   ICÔNE
------------------------------------------------------------ */

.sm-global-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4eaf1;
    color: #536273;

    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}


/* ------------------------------------------------------------
   TEXTE
------------------------------------------------------------ */

.sm-global-copy {
    flex: 1;
    min-width: 0;
}

.sm-global-eyebrow {
    display: block;
    margin-bottom: 5px;

    color: #61738a;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.sm-global-status h2 {
    margin: 0 0 6px;

    color: #10233f;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

.sm-global-status p {
    margin: 0;

    color: #52657d;

    font-size: 15px;
    line-height: 1.55;
}

.sm-global-details {
    margin-top: 8px;

    color: #718198;

    font-size: 13px;
    line-height: 1.4;
}


/* ============================================================
   SERVICE OPÉRATIONNEL
============================================================ */

.sm-global-status.is-ok {
    background: #f3fbf6;
    border-color: #ccebd8;
}

.sm-global-status.is-ok .sm-global-icon {
    background: #d9f4e3;
    color: #15803d;
}


/* ============================================================
   VÉRIFICATION LIMITÉE
============================================================ */

.sm-global-status.is-limited {
    background: #fffaf0;
    border-color: #f3dfad;
}

.sm-global-status.is-limited .sm-global-icon {
    background: #fff0c7;
    color: #b86600;
}


/* ============================================================
   PROBLÈME / PERTURBATION
============================================================ */

.sm-global-status.is-problem {
    background: #fff5f5;
    border-color: #f2cccc;
}

.sm-global-status.is-problem .sm-global-icon {
    background: #fde1e1;
    color: #d63b3b;
}

/* ============================================================
   ÉTAT GLOBAL — MOBILE
============================================================ */

@media (max-width: 768px) {

    .sm-global-status {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 14px;
    }

    .sm-global-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 21px;
    }

    .sm-global-status h2 {
        font-size: 20px;
    }

    .sm-global-status p {
        font-size: 14px;
    }

    .sm-global-details {
        font-size: 12px;
    }
}


@media (max-width: 480px) {

    .sm-global-status {
        gap: 12px;
        padding: 16px;
    }

    .sm-global-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 19px;
    }

    .sm-global-status h2 {
        font-size: 19px;
    }
}


/* ============================================================
   ASSISTANCE OFFICIELLE
============================================================ */

.sm-service-contact {
    margin-top: 24px;
}

.sm-service-contact-intro {
    margin: 12px 0 20px;
    color: #4b5d73;
    line-height: 1.6;
}


/* Conteneur des liens */

.sm-service-contact-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}


/* Lien */

.sm-service-contact-link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;

    padding: 15px 16px;

    background: #fff;
    border: 1px solid #dfe7f0;
    border-radius: 10px;

    color: #172b4d;
    text-decoration: none !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.sm-service-contact-link:hover {
    border-color: #b9cce0;

    box-shadow:
        0 5px 16px
        rgba(20, 45, 80, .08);

    transform: translateY(-2px);
}


/* Note Statut24 */

.sm-service-contact-note {
    margin: 4px 0 0;

    color: #75869a;
    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   ASSISTANCE — MOBILE
============================================================ */

@media (max-width: 700px) {

    .sm-service-contact-links {
        grid-template-columns: 1fr;
    }

    .sm-service-contact-link {
        padding: 14px 15px;
    }
}
/* ============================================================
   SERVICE PAGE — MAIN + SIDEBAR
============================================================ */

.sm-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;

    gap: 24px;
    margin-top: 0;
}

.sm-service-main {
    min-width: 0;
}

.sm-service-sidebar {
    min-width: 0;

    position: sticky;
    top: 90px;

    align-self: start;
}


/* Cartes */

.sm-service-main .sm-dashboard-card {
    margin-bottom: 18px;
}

.sm-service-sidebar .sm-dashboard-card {
    padding: 18px;
    margin-bottom: 16px;
}


/* ============================================================
   SIDEBAR — ASSISTANCE OFFICIELLE
============================================================ */

.sm-service-sidebar .sm-service-contact {
    margin-top: 0;
}

.sm-service-sidebar .sm-service-contact-links {
    display: flex;
    flex-direction: column;

    gap: 9px;
    margin-bottom: 14px;
}

.sm-service-sidebar .sm-service-contact-link {
    width: 100%;
    padding: 12px 13px;

    box-sizing: border-box;
}


/* ============================================================
   SERVICE PAGE — TABLETTE
============================================================ */

@media (max-width: 900px) {

    .sm-service-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sm-service-sidebar {
        position: static;
    }
}


/* ============================================================
   SERVICE PAGE — MOBILE
============================================================ */

@media (max-width: 600px) {

    .sm-service-layout .sm-dashboard-card {
        padding: 16px;
    }
}

/* ============================================================
   SIDEBAR — CONSEILS
============================================================ */

.sm-sidebar-conseils {
    margin-top: 0;
}

.sm-sidebar-conseils h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.sm-sidebar-conseils-links {
    display: flex;
    flex-direction: column;
}

.sm-sidebar-conseils-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #e5ebf1;

    color: #24364d;
    text-decoration: none;
    line-height: 1.4;
}

.sm-sidebar-conseils-links a:first-child {
    border-top: 1px solid #e5ebf1;
}

.sm-sidebar-conseils-links a span {
    flex: 0 0 auto;
    color: #087fd1;
}

.sm-sidebar-conseils-links a:hover {
    color: #087fd1;
}

.sm-sidebar-conseils-all {
    display: inline-block;
    margin-top: 16px;

    color: #087fd1;
    font-weight: 600;
    text-decoration: none;
}

.sm-sidebar-conseils-all:hover {
    text-decoration: underline;
}
/* ============================================================
   SIDEBAR — À PROPOS DU SERVICE
============================================================ */

.sm-service-about {
    margin-bottom: 16px;
}

.sm-service-about > .sm-eyebrow {
    display: block;

    margin: 0 0 14px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    text-transform: none;
    letter-spacing: 0;
}

.sm-service-about h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.sm-service-about-text {
    margin: 0 0 14px;

    color: #52657d;

    font-size: 14px;
    line-height: 1.55;
}

.sm-service-about-info {
    border-top: 1px solid #e5ebf1;
}

.sm-service-about-info > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px solid #e5ebf1;

    font-size: 13px;
}

.sm-service-about-info span {
    color: #64748b;
}

.sm-service-about-info strong {
    color: #24364d;
    text-align: right;
}

.sm-service-about-info a {
    color: #0877c9;
    font-weight: 600;
    text-align: right;
    text-decoration: none;
}

.sm-service-about-info a:hover {
    text-decoration: underline;
}
/* ============================================================
   TITRE SERVICE — ALIGNÉ À GAUCHE
============================================================ */

.sm-status-dashboard {
    padding-top: 26px;
    padding-bottom: 12px;
}

.sm-status-page .sm-title {
    margin: 0 0 18px;

    color: #1f2937;
    text-align: left;

    font-size: 42px;
    line-height: 1.15;
}


/* ============================================================
   FIL D'ARIANE
============================================================ */

.sm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0 0 18px;

    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.sm-breadcrumb a {
    color: #52657d;
    text-decoration: none;
}

.sm-breadcrumb a:hover {
    color: #0877c9;
    text-decoration: underline;
}

.sm-breadcrumb > span:not(.sm-breadcrumb-current) {
    color: #94a3b8;
}

.sm-breadcrumb-current {
    color: #172033;
    font-weight: 600;
}
/* ============================================================
   SERVICE HEADER — LOGO + TITRE + DESCRIPTION
============================================================ */

.sm-service-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin-bottom: 22px;
}


/* Logo */

.sm-service-logo {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e7ee;
    border-radius: 12px;
    background: #fff;

    box-sizing: border-box;
}

.sm-service-logo-img {
    display: block;

    width: 50px;
    height: 50px;

    object-fit: contain;
}


/* Titre + description */

.sm-service-heading-content {
    flex: 1;
    min-width: 0;
}

.sm-service-heading .sm-title {
    margin: 2px 0 7px;
}

.sm-service-intro {
    max-width: 620px;
    margin: 0;

    color: #52657d;
    font-size: 15px;
    line-height: 1.55;
}


/* ============================================================
   SERVICE HEADER — LIENS RAPIDES
============================================================ */

.sm-service-quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 22px;
    margin-top: 12px;
}

.sm-service-quick-links a {
    color: #0877c9;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;
}

.sm-service-quick-links a:hover {
    text-decoration: underline;
}


/* ============================================================
   SERVICE HEADER — MOBILE
============================================================ */

@media (max-width: 600px) {

    .sm-service-heading {
        gap: 12px;
    }

    .sm-service-logo {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .sm-service-logo-img {
        width: 48px;
        height: 48px;
    }

    .sm-service-quick-links {
        gap: 9px 16px;
    }
}

/* ============================================================
   TECHNIQUE + UTILISATEURS — 2 COLONNES
============================================================ */

.sm-status-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.sm-status-columns > .sm-dashboard-card {
    margin-bottom: 18px;
}


/* ============================================================
   UTILISATEURS — ADAPTATION 2 COLONNES
============================================================ */

.sm-status-columns .sm-users-card .sm-user-result-row {
    min-width: 0;
    padding: 10px 11px;
}

.sm-status-columns .sm-users-card .sm-user-result-label {
    gap: 7px;
    font-size: 12px;
}

.sm-status-columns .sm-users-card .sm-user-result-count {
    min-width: 30px;
    padding: 5px 7px;
}


/* ============================================================
   TITRES — ADAPTATION 2 COLONNES
============================================================ */

.sm-status-columns .sm-card-heading h2 {
    font-size: 20px;
}

.sm-status-columns .sm-tech-copy h3 {
    font-size: 19px;
}


/* ============================================================
   VÉRIFICATION TECHNIQUE — 2 COLONNES
============================================================ */

.sm-status-columns .sm-tech-card {
    padding: 20px;
}

.sm-status-columns .sm-tech-card .sm-card-heading {
    margin-bottom: 16px;
}

.sm-status-columns .sm-tech-card .sm-tech-result {
    padding: 18px;
    gap: 14px;
}

.sm-status-columns .sm-tech-card .sm-tech-copy h3 {
    margin: 0 0 10px;
}

.sm-status-columns .sm-tech-card .sm-tech-meta {
    margin-top: 16px;
}

.sm-status-columns .sm-tech-card .sm-check {
    margin-top: 16px;
}

.sm-status-columns .sm-tech-card .sm-progress {
    margin-top: 12px;
}

.sm-status-columns .sm-tech-card .sm-tech-help {
    margin-top: 20px;
    padding-top: 16px;
}
/* ============================================================
   RESPONSIVE — TECHNIQUE + UTILISATEURS
============================================================ */

@media (max-width: 1050px) {

    .sm-status-columns {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .sm-status-columns .sm-users-card .sm-user-results {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 380px) {

    .sm-status-columns .sm-users-card .sm-user-vote-buttons {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   COMPRENDRE LE STATUT
============================================================ */

.sm-status-info h2 {
    margin: 6px 0 14px;

    font-size: 24px;
    line-height: 1.3;
}

.sm-status-info p {
    color: #64748b;
    line-height: 1.6;
}


/* ============================================================
   UTILISATEURS — ICONES DES BOUTONS
============================================================ */

.sm-user-vote-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sm-user-vote-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================================
   ASSISTANCE OFFICIELLE — ICONES
============================================================ */

.sm-contact-link-icon {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #0d6efd;
}

.sm-contact-link-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sm-contact-link-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 0;
}

.sm-contact-link-copy strong {
    color: #172033;
    font-size: 14px;
    font-weight: 700;
}

.sm-contact-link-copy > span {
    color: #64748b;
    font-size: 12px;
}

.sm-contact-link-arrow {
    color: #64748b;
    font-size: 24px;
    line-height: 1;
}
