/* /Components/Layout - Copy/MainLayout.razor.rz.scp.css */
/* Styles pour MainLayout */
.app-container[b-32kaij1cx4] {
    display: flex;
    min-height: 100vh;
}

/* Les autres styles restent les mêmes que votre app.css */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Styles pour MainLayout */
.app-container[b-a4n41hpb0u] {
    display: flex;
    min-height: 100vh;
}

/* Les autres styles restent les mêmes que votre app.css */
/* /Components/Pages/Admin/ExportLogs.razor.rz.scp.css */
/* ===== TRACABILITÉ DES EXPORTS - VERSION COMPACTE ===== */
.traceability-container[b-wmukqc1fbl] {
    padding: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    background: #f8fafc;
    min-height: 100vh;
    font-size: 0.9rem;
}

/* En-tête compact */
.traceability-header[b-wmukqc1fbl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-title h1[b-wmukqc1fbl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .header-title h1 i[b-wmukqc1fbl] {
        color: #3b82f6;
        font-size: 1.5rem;
    }

.header-subtitle[b-wmukqc1fbl] {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
}

/* Bouton export compact */
.btn-excel[b-wmukqc1fbl] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .btn-excel:hover:not(:disabled)[b-wmukqc1fbl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-excel:disabled[b-wmukqc1fbl] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Statistiques compactes */
.stats-cards[b-wmukqc1fbl] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-wmukqc1fbl] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .stat-card:hover[b-wmukqc1fbl] {
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

.stat-icon[b-wmukqc1fbl] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

    .stat-icon.blue[b-wmukqc1fbl] {
        background: #dbeafe;
        color: #2563eb;
    }

    .stat-icon.green[b-wmukqc1fbl] {
        background: #d1fae5;
        color: #059669;
    }

    .stat-icon.red[b-wmukqc1fbl] {
        background: #fee2e2;
        color: #dc2626;
    }

    .stat-icon.purple[b-wmukqc1fbl] {
        background: #f3e8ff;
        color: #7c3aed;
    }

.stat-value[b-wmukqc1fbl] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label[b-wmukqc1fbl] {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filtres compacts */
.filters-card[b-wmukqc1fbl] {
    background: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.filters-header[b-wmukqc1fbl] {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
}

    .filters-header h3[b-wmukqc1fbl] {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
        color: #334155;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.filters-content[b-wmukqc1fbl] {
    padding: 1rem;
}

.filters-grid[b-wmukqc1fbl] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.filter-group[b-wmukqc1fbl] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-label[b-wmukqc1fbl] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-select[b-wmukqc1fbl], .date-input[b-wmukqc1fbl] {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s;
    background: white;
    height: 32px;
}

    .filter-select:focus[b-wmukqc1fbl], .date-input:focus[b-wmukqc1fbl] {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59,130,246,0.1);
    }

.date-range[b-wmukqc1fbl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-separator[b-wmukqc1fbl] {
    color: #94a3b8;
    font-size: 0.8rem;
}

.filters-actions[b-wmukqc1fbl] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.btn-apply[b-wmukqc1fbl], .btn-reset[b-wmukqc1fbl] {
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    height: 32px;
}

.btn-apply[b-wmukqc1fbl] {
    background: #2563eb;
    color: white;
}

    .btn-apply:hover[b-wmukqc1fbl] {
        background: #1d4ed8;
    }

.btn-reset[b-wmukqc1fbl] {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

    .btn-reset:hover[b-wmukqc1fbl] {
        background: #e2e8f0;
    }

/* Tableau compact */
.results-card[b-wmukqc1fbl] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.results-header[b-wmukqc1fbl] {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.results-count[b-wmukqc1fbl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-icon[b-wmukqc1fbl] {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.85rem;
}

    .btn-icon:hover[b-wmukqc1fbl] {
        background: #e2e8f0;
        color: #0f172a;
    }

/* Loading */
.loading-container[b-wmukqc1fbl] {
    padding: 3rem;
    text-align: center;
    color: #64748b;
}

.loading-spinner[b-wmukqc1fbl] {
    width: 30px;
    height: 30px;
    border: 2px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-wmukqc1fbl 1s linear infinite;
    margin: 0 auto 0.5rem;
}

@keyframes spin-b-wmukqc1fbl {
    to {
        transform: rotate(360deg);
    }
}

/* Empty state */
.empty-state[b-wmukqc1fbl] {
    padding: 3rem;
    text-align: center;
    color: #94a3b8;
}

    .empty-state i[b-wmukqc1fbl] {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .empty-state h3[b-wmukqc1fbl] {
        color: #475569;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .empty-state p[b-wmukqc1fbl] {
        font-size: 0.85rem;
    }

/* Table container avec défilement */
.table-container[b-wmukqc1fbl] {
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
    border-bottom: 1px solid #e2e8f0;
}

/* Tableau compact */
.traceability-table[b-wmukqc1fbl] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

    .traceability-table th[b-wmukqc1fbl] {
        background: #f1f5f9;
        padding: 0.6rem 0.8rem;
        text-align: left;
        font-weight: 600;
        color: #334155;
        border-bottom: 1px solid #cbd5e1;
        position: sticky;
        top: 0;
        z-index: 10;
        white-space: nowrap;
    }

    .traceability-table td[b-wmukqc1fbl] {
        padding: 0.5rem 0.8rem;
        border-bottom: 1px solid #e2e8f0;
        color: #334155;
        vertical-align: middle;
    }

    .traceability-table tbody tr:hover[b-wmukqc1fbl] {
        background: #f8fafc;
    }

.row-failed[b-wmukqc1fbl] {
    background: #fef2f2;
}

    .row-failed:hover[b-wmukqc1fbl] {
        background: #fee2e2 !important;
    }

.sortable[b-wmukqc1fbl] {
    cursor: pointer;
    user-select: none;
}

    .sortable:hover[b-wmukqc1fbl] {
        background: #e2e8f0 !important;
    }

/* Cellules avec alignement */
.date-cell[b-wmukqc1fbl] {
    white-space: nowrap;
}

.date-full[b-wmukqc1fbl] {
    font-weight: 500;
    font-size: 0.8rem;
}

.date-relative[b-wmukqc1fbl] {
    font-size: 0.7rem;
    color: #64748b;
}

.user-info[b-wmukqc1fbl] {
    display: flex;
    flex-direction: column;
}

.user-name[b-wmukqc1fbl] {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.8rem;
}

.user-code[b-wmukqc1fbl] {
    font-size: 0.7rem;
    color: #64748b;
}

/* Badges compacts */
.badge[b-wmukqc1fbl] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.badge-excel[b-wmukqc1fbl] {
    background: #d1fae5;
    color: #065f46;
}

.badge-csv[b-wmukqc1fbl] {
    background: #e0f2fe;
    color: #075985;
}

.badge-success[b-wmukqc1fbl] {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger[b-wmukqc1fbl] {
    background: #fee2e2;
    color: #991b1b;
}

/* Cellules de fichier */
.file-info[b-wmukqc1fbl] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 200px;
}

    .file-info i[b-wmukqc1fbl] {
        color: #64748b;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .file-info span[b-wmukqc1fbl] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.75rem;
    }

/* Informations techniques */
.tech-info[b-wmukqc1fbl] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ip-address[b-wmukqc1fbl], .fingerprint[b-wmukqc1fbl] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: #475569;
    white-space: nowrap;
}

    .ip-address i[b-wmukqc1fbl], .fingerprint i[b-wmukqc1fbl] {
        font-size: 0.7rem;
        color: #64748b;
        width: 14px;
        flex-shrink: 0;
    }

    .fingerprint span[b-wmukqc1fbl] {
        font-family: monospace;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Bouton voir filtres */
.btn-view-filters[b-wmukqc1fbl] {
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.2s;
    white-space: nowrap;
}

    .btn-view-filters:hover[b-wmukqc1fbl] {
        background: #f1f5f9;
        border-color: #94a3b8;
    }

    .btn-view-filters i[b-wmukqc1fbl] {
        font-size: 0.65rem;
    }

.text-muted[b-wmukqc1fbl] {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.7rem;
}

/* Durée */
.duration[b-wmukqc1fbl] {
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Alignements */
.text-end[b-wmukqc1fbl] {
    text-align: right;
}

.fw-bold[b-wmukqc1fbl] {
    font-weight: 600;
}

/* Pagination compacte */
.pagination-container[b-wmukqc1fbl] {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

.pagination-info[b-wmukqc1fbl] {
    color: #64748b;
    font-size: 0.75rem;
}

.pagination-controls[b-wmukqc1fbl] {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.btn-pagination[b-wmukqc1fbl] {
    min-width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #475569;
    font-size: 0.7rem;
}

    .btn-pagination:hover:not(:disabled)[b-wmukqc1fbl] {
        background: #f1f5f9;
        border-color: #94a3b8;
    }

    .btn-pagination.active[b-wmukqc1fbl] {
        background: #2563eb;
        border-color: #2563eb;
        color: white;
    }

    .btn-pagination:disabled[b-wmukqc1fbl] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.pagination-dots[b-wmukqc1fbl] {
    color: #64748b;
    padding: 0 0.2rem;
    font-size: 0.7rem;
}

/* Modal compact */
.modal-overlay[b-wmukqc1fbl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.modal-content[b-wmukqc1fbl] {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 70vh;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-header[b-wmukqc1fbl] {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

    .modal-header h3[b-wmukqc1fbl] {
        margin: 0;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #0f172a;
    }

.modal-close[b-wmukqc1fbl] {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.25rem;
    border-radius: 4px;
    line-height: 1;
}

    .modal-close:hover[b-wmukqc1fbl] {
        background: #e2e8f0;
        color: #0f172a;
    }

.modal-body[b-wmukqc1fbl] {
    padding: 1rem;
    overflow-y: auto;
    max-height: calc(70vh - 110px);
}

.filters-preview[b-wmukqc1fbl] {
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.75rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}

.modal-footer[b-wmukqc1fbl] {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.btn-secondary[b-wmukqc1fbl] {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    font-size: 0.75rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-secondary:hover[b-wmukqc1fbl] {
        background: #e2e8f0;
    }

/* Responsive */
@media (max-width: 1200px) {
    .stats-cards[b-wmukqc1fbl] {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters-grid[b-wmukqc1fbl] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .traceability-container[b-wmukqc1fbl] {
        padding: 1rem;
    }

    .traceability-header[b-wmukqc1fbl] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .stats-cards[b-wmukqc1fbl] {
        grid-template-columns: 1fr;
    }

    .date-range[b-wmukqc1fbl] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-container[b-wmukqc1fbl] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .traceability-table th[b-wmukqc1fbl],
    .traceability-table td[b-wmukqc1fbl] {
        padding: 0.4rem;
    }
}
/* /Components/Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* ===== RÉUTILISATION DES STYLES LOGIN ===== */
/* Ces styles sont copiés depuis Login.razor.css */

/* ===== RESET GLOBAL POUR LOGIN ===== */
html[b-it89x32o7n], body[b-it89x32o7n] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* ===== PAGE LOGIN ===== */
.login-page[b-it89x32o7n] {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    padding: 20px !important;
    position: relative;
}

/* ===== WRAPPER ===== */
.login-wrapper[b-it89x32o7n] {
    width: 100%;
    max-width: 400px;
    margin-top: 5vh;
}

/* ===== CARTE ===== */
.login-card[b-it89x32o7n] {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* ===== TITRE ===== */
.login-title[b-it89x32o7n] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    border: none !important;
    outline: none !important;
}

.login-subtitle[b-it89x32o7n] {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ===== INPUTS ===== */
.input-group[b-it89x32o7n] {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    position: relative;
}

    .input-group:focus-within[b-it89x32o7n] {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

.form-control[b-it89x32o7n] {
    border: none;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    background: transparent;
}

    .form-control:focus[b-it89x32o7n] {
        outline: none;
    }

.input-group-text[b-it89x32o7n] {
    background: #f9fafb;
    border: none;
    color: #6b7280;
}

/* ===== BOUTON PRINCIPAL ===== */
.btn-primary[b-it89x32o7n] {
    background: #2563eb !important;
    border: none !important;
    border-radius: 8px;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s ease;
    width: 100%;
    color: white;
    cursor: pointer;
}

    .btn-primary:hover:not(:disabled)[b-it89x32o7n] {
        background: #1d4ed8 !important;
        transform: translateY(-1px);
    }

    .btn-primary:disabled[b-it89x32o7n] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* ===== BOUTON RETOUR ===== */
.btn-back[b-it89x32o7n] {
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-back:hover[b-it89x32o7n] {
        background: #f3f4f6;
        color: #2563eb;
    }

/* ===== BOUTON OUTLINE ===== */
.btn-outline-primary[b-it89x32o7n] {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s ease;
    cursor: pointer;
}

    .btn-outline-primary:hover[b-it89x32o7n] {
        background: #2563eb;
        color: white;
    }

/* ===== LIENS ===== */
.forgot-password[b-it89x32o7n] {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
}

    .forgot-password:hover[b-it89x32o7n] {
        text-decoration: underline;
    }

/* ===== CHECKBOX ===== */
.form-check-input[b-it89x32o7n] {
    accent-color: #2563eb;
}

/* ===== LOGO ===== */
.logo-mini i[b-it89x32o7n] {
    font-size: 2rem;
    color: #2563eb;
}

/* ===== LOADING SPINNER ===== */
.spinner-border[b-it89x32o7n] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-it89x32o7n .75s linear infinite;
}

@keyframes spinner-border-b-it89x32o7n {
    to {
        transform: rotate(360deg);
    }
}

/* ===== ALERT ===== */
.alert-modern[b-it89x32o7n] {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.btn-close-sm[b-it89x32o7n] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 1rem;
    cursor: pointer;
    color: #dc2626;
}

/* ===== STYLES SPÉCIFIQUES FORGOT PASSWORD ===== */
.success-icon[b-it89x32o7n] {
    animation: scaleIn-b-it89x32o7n 0.3s ease;
}

@keyframes scaleIn-b-it89x32o7n {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.alert-info-modern[b-it89x32o7n] {
    background-color: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0369a1;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
}

.d-flex[b-it89x32o7n] {
    display: flex;
}

.align-items-center[b-it89x32o7n] {
    align-items: center;
}

.justify-content-center[b-it89x32o7n] {
    justify-content: center;
}

.gap-2[b-it89x32o7n] {
    gap: 0.5rem;
}

.ms-2[b-it89x32o7n] {
    margin-left: 0.5rem;
}

.me-2[b-it89x32o7n] {
    margin-right: 0.5rem;
}

.mb-3[b-it89x32o7n] {
    margin-bottom: 1rem;
}

.mb-4[b-it89x32o7n] {
    margin-bottom: 1.5rem;
}

.mt-4[b-it89x32o7n] {
    margin-top: 1.5rem;
}

.text-center[b-it89x32o7n] {
    text-align: center;
}

.w-100[b-it89x32o7n] {
    width: 100%;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .login-card[b-it89x32o7n] {
        padding: 1.5rem;
    }

    .login-wrapper[b-it89x32o7n] {
        margin-top: 3vh;
    }
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
/* ===== RESET GLOBAL POUR LOGIN ===== */
html[b-yq1f1xihkn], body[b-yq1f1xihkn] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* ===== PAGE LOGIN ===== */
.login-page[b-yq1f1xihkn] {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    background: #ffffff !important;
    padding: 20px !important;
    position: relative;
    width: 100%;
    /* Supprimer min-height: 100vh */
    /* min-height: 100vh !important; */ /* ← Commenté ou supprimé */
}

/* Supprime tout effet background */
.login-background[b-yq1f1xihkn],
.bg-pattern[b-yq1f1xihkn] {
    display: none !important;
}

/* ===== WRAPPER ===== */
.login-wrapper[b-yq1f1xihkn] {
    width: 100%;
    max-width: 400px;
    margin: 0; /* Supprimer margin-top */
}

/* ===== CARTE ===== */
.login-card[b-yq1f1xihkn] {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* ===== TITRE ===== */
.login-title[b-yq1f1xihkn] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    border: none !important; /* Supprime toute bordure */
    outline: none !important; /* Supprime tout contour */
}

.login-subtitle[b-yq1f1xihkn] {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ===== INPUTS ===== */
.input-group[b-yq1f1xihkn] {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    position: relative;
}

    .input-group:focus-within[b-yq1f1xihkn] {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

.form-control[b-yq1f1xihkn] {
    border: none;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    background: transparent;
}

    .form-control:focus[b-yq1f1xihkn] {
        outline: none;
    }

.input-group-text[b-yq1f1xihkn] {
    background: #f9fafb;
    border: none;
    color: #6b7280;
}

/* Style pour le bouton de toggle password */
.password-toggle[b-yq1f1xihkn] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b7280;
    z-index: 10;
    cursor: pointer;
    padding: 0 10px;
}

    .password-toggle:hover[b-yq1f1xihkn] {
        color: #2563eb;
    }

/* ===== BOUTON ===== */
.btn-primary[b-yq1f1xihkn] {
    background: #2563eb !important;
    border: none !important;
    border-radius: 8px;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s ease;
    width: 100%;
}

    .btn-primary:hover:not(:disabled)[b-yq1f1xihkn] {
        background: #1d4ed8 !important;
        transform: translateY(-1px);
    }

    .btn-primary:disabled[b-yq1f1xihkn] {
        opacity: 0.6;
    }

/* ===== CHECKBOX ===== */
.form-check-input[b-yq1f1xihkn] {
    accent-color: #2563eb;
}

/* ===== LIENS ===== */
.forgot-password[b-yq1f1xihkn] {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
}

    .forgot-password:hover[b-yq1f1xihkn] {
        text-decoration: underline;
    }

/* ===== FOOTER ===== */
.login-footer[b-yq1f1xihkn] {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay[b-yq1f1xihkn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner[b-yq1f1xihkn] {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin-b-yq1f1xihkn 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-yq1f1xihkn {
    to {
        transform: rotate(360deg);
    }
}

/* ===== ALERT ===== */
.alert-modern[b-yq1f1xihkn] {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.btn-close-sm[b-yq1f1xihkn] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 1rem;
    cursor: pointer;
}

/* ===== LOGO ===== */
.logo-mini i[b-yq1f1xihkn] {
    font-size: 2rem;
    color: #2563eb;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .login-card[b-yq1f1xihkn] {
        padding: 1.5rem;
    }
}
/* /Components/Pages/Client/ExportDetails.razor.rz.scp.css */
/* === EN-TÊTE MODERNE === */
.client-page-header-gradient[b-rgmj0ej0gp] {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    color: #212529;
}

    .client-page-header-gradient[b-rgmj0ej0gp]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8f9fa' fill-opacity='0.5' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.1;
    }

.header-icon[b-rgmj0ej0gp] {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(13,110,253,0.2);
}

.page-title[b-rgmj0ej0gp] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.page-subtitle[b-rgmj0ej0gp] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.client-badge[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e9ecef;
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

/* === CARTE PRINCIPALE === */
.main-card[b-rgmj0ej0gp] {
    border: none;
    border-radius: 16px;
    background: white;
    border: 1px solid #e9ecef;
    position: relative;
}

    .main-card:hover[b-rgmj0ej0gp] {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    }

.card-header-gradient[b-rgmj0ej0gp] {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 16px 16px 0 0;
    color: #495057;
}

    .card-header-gradient h3[b-rgmj0ej0gp] {
        font-size: 1rem;
        font-weight: 600;
    }

/* === FORMULAIRES === */
.form-group-enhanced[b-rgmj0ej0gp] {
    margin-bottom: 1rem;
}

.form-label-enhanced[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.label-icon[b-rgmj0ej0gp] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: white;
    font-size: 0.8rem;
}

.input-group[b-rgmj0ej0gp] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .input-group:focus-within[b-rgmj0ej0gp] {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

.input-group-text[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.form-control-lg[b-rgmj0ej0gp], .form-select-lg[b-rgmj0ej0gp] {
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
}

    .form-control-lg:focus[b-rgmj0ej0gp], .form-select-lg:focus[b-rgmj0ej0gp] {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
    }

    .form-control-lg:disabled[b-rgmj0ej0gp], .form-select-lg:disabled[b-rgmj0ej0gp] {
        background-color: #f8f9fa;
        cursor: not-allowed;
        opacity: 0.7;
    }

.select-enhanced[b-rgmj0ej0gp] {
    position: relative;
}

.select-arrow[b-rgmj0ej0gp] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 2;
}

/* === FILTRES ACTIFS === */
.active-filters[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px dashed #dee2e6;
    font-size: 0.9rem;
}

.filter-badge[b-rgmj0ej0gp] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-badge:hover[b-rgmj0ej0gp] {
        background: #f8f9fa;
        border-color: #adb5bd;
    }

.filter-badge-global[b-rgmj0ej0gp] {
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-badge-global:hover[b-rgmj0ej0gp] {
        background: #0b5ed7;
    }

/* === TABLEAU === */
.tableau-suivis-card[b-rgmj0ej0gp] {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.tableau-header[b-rgmj0ej0gp] {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tableau-body[b-rgmj0ej0gp] {
    max-height: 500px;
    overflow-y: auto;
}

.table[b-rgmj0ej0gp] {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.table-header-fixe[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

    .table-header-fixe th[b-rgmj0ej0gp] {
        padding: 0.75rem 0.5rem;
        font-weight: 600;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: #495057;
        white-space: nowrap;
        position: sticky;
        top: 0;
        background: #f8f9fa;
        z-index: 10;
    }

.sortable-th[b-rgmj0ej0gp] {
    cursor: pointer;
    user-select: none;
}

    .sortable-th:hover[b-rgmj0ej0gp] {
        background-color: #e9ecef;
    }

.ligne-suivi:hover[b-rgmj0ej0gp] {
    background-color: #f8f9fa;
}

.badge-code[b-rgmj0ej0gp] {
    background: #e7f5ff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #0d6efd;
}

/* === BOUTONS === */
.btn-action-secondary[b-rgmj0ej0gp] {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

    .btn-action-secondary:hover[b-rgmj0ej0gp] {
        background: #5a6268;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(108, 117, 125, 0.2);
    }

.btn-action-reset[b-rgmj0ej0gp] {
    background: #e9ecef;
    color: #495057;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

    .btn-action-reset:hover[b-rgmj0ej0gp] {
        background: #dee2e6;
        transform: translateY(-1px);
    }

.btn-action-export-excel[b-rgmj0ej0gp] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

    .btn-action-export-excel:hover:not(:disabled)[b-rgmj0ej0gp] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

    .btn-action-export-excel:disabled[b-rgmj0ej0gp] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* === MESSAGES === */
.alert-message[b-rgmj0ej0gp] {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.alert-success[b-rgmj0ej0gp] {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-error[b-rgmj0ej0gp] {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.alert-info[b-rgmj0ej0gp] {
    background: #cff4fc;
    color: #055160;
    border: 1px solid #b6effb;
}

/* === SECTION INFO === */
.info-section[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card[b-rgmj0ej0gp] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.info-card-header[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #495057;
}

    .info-card-header i[b-rgmj0ej0gp] {
        font-size: 1.2rem;
        margin-right: 8px;
    }

    .info-card-header h5[b-rgmj0ej0gp] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }

.info-list[b-rgmj0ej0gp] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

    .info-list li[b-rgmj0ej0gp] {
        padding: 0.4rem 0;
        display: flex;
        align-items: center;
        color: #6c757d;
    }

        .info-list li i[b-rgmj0ej0gp] {
            margin-right: 8px;
            font-size: 0.8rem;
        }

/* === LÉGENDE === */
.legend-section[b-rgmj0ej0gp] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.legend-card[b-rgmj0ej0gp] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.legend-header[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    color: #495057;
}

    .legend-header i[b-rgmj0ej0gp] {
        margin-right: 6px;
        color: #0d6efd;
    }

    .legend-header h5[b-rgmj0ej0gp] {
        margin: 0;
        font-size: 0.9rem;
    }

.legend-body[b-rgmj0ej0gp] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.legend-item[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

    .legend-item .badge[b-rgmj0ej0gp] {
        width: 16px;
        height: 16px;
        border-radius: 4px;
        margin-right: 6px;
    }

/* === ÉTATS DE CHARGEMENT === */
.loading-spinner[b-rgmj0ej0gp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.filter-loading-overlay[b-rgmj0ej0gp] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 16px;
    gap: 10px;
    animation: fadeIn-b-rgmj0ej0gp 0.2s ease;
}

@keyframes fadeIn-b-rgmj0ej0gp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-b-rgmj0ej0gp {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.loading-row[b-rgmj0ej0gp] {
    animation: pulse-b-rgmj0ej0gp 1.5s infinite;
}

.skeleton-cell[b-rgmj0ej0gp] {
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-rgmj0ej0gp 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading-b-rgmj0ej0gp {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.spinner-border-sm[b-rgmj0ej0gp] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* === ERREUR === */
.error-card[b-rgmj0ej0gp] {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    .error-card i[b-rgmj0ej0gp] {
        font-size: 3rem;
        color: #dc3545;
        margin-bottom: 1rem;
    }

/* === COULEURS SPÉCIALES === */
.bg-purple[b-rgmj0ej0gp] {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%) !important;
}

.bg-orange[b-rgmj0ej0gp] {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .page-title[b-rgmj0ej0gp] {
        font-size: 1.2rem;
    }

    .page-subtitle[b-rgmj0ej0gp] {
        font-size: 0.8rem;
    }

    .client-badge[b-rgmj0ej0gp] {
        display: none;
    }

    .action-buttons[b-rgmj0ej0gp] {
        flex-direction: column;
        gap: 0.8rem;
    }

        .action-buttons > div[b-rgmj0ej0gp] {
            width: 100%;
            justify-content: center;
        }

    .btn-action-secondary[b-rgmj0ej0gp],
    .btn-action-reset[b-rgmj0ej0gp],
    .btn-action-export-excel[b-rgmj0ej0gp] {
        width: 100%;
        justify-content: center;
    }

    .tableau-body[b-rgmj0ej0gp] {
        max-height: 350px;
    }
}
/* === EN-TÊTE ULTRA COMPACT === */
.client-page-header-gradient[b-rgmj0ej0gp] {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.header-icon[b-rgmj0ej0gp] {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(13,110,253,0.2);
}

.page-title[b-rgmj0ej0gp] {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0;
    line-height: 1.2;
}

.page-subtitle[b-rgmj0ej0gp] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0;
}

.client-badge[b-rgmj0ej0gp] {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 0.15rem 0.75rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e9ecef;
    color: #495057;
    font-weight: 500;
    font-size: 0.7rem;
}
/* === CHARGEMENT INITIAL === */
.initial-loading-container[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    animation: fadeIn-b-rgmj0ej0gp 0.5s ease;
}

.loading-spinner[b-rgmj0ej0gp] {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

    .loading-spinner .spinner-border[b-rgmj0ej0gp] {
        width: 4rem;
        height: 4rem;
        border-width: 0.25rem;
        color: #0d6efd;
    }

.loading-text[b-rgmj0ej0gp] {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    animation: pulse-b-rgmj0ej0gp 2s infinite;
}

.loading-spinner .progress[b-rgmj0ej0gp] {
    background-color: #e9ecef;
    border-radius: 30px;
    overflow: hidden;
    margin: 1.5rem auto 0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loading-spinner .progress-bar[b-rgmj0ej0gp] {
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    border-radius: 30px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .loading-spinner .progress-bar[b-rgmj0ej0gp]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        animation: shimmer-b-rgmj0ej0gp 1.5s infinite;
    }

@keyframes shimmer-b-rgmj0ej0gp {
    0% {
        transform: translateX(-100%);
    }

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

.loading-spinner small[b-rgmj0ej0gp] {
    color: #6c757d;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.5rem;
}

@keyframes fadeIn-b-rgmj0ej0gp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-rgmj0ej0gp {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}
.initial-loading-container[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
}

.loading-spinner[b-rgmj0ej0gp] {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 450px;
    width: 100%;
}

    .loading-spinner i[b-rgmj0ej0gp] {
        font-size: 3.5rem;
        color: #0d6efd;
        opacity: 0.8;
    }

.loading-text[b-rgmj0ej0gp] {
    color: #212529;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1rem 0;
}

.loading-spinner .progress[b-rgmj0ej0gp] {
    height: 10px;
    border-radius: 30px;
    background-color: #e9ecef;
    margin: 1.5rem 0 0.5rem;
    overflow: hidden;
}

.loading-spinner .progress-bar[b-rgmj0ej0gp] {
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    border-radius: 30px;
    transition: width 0.3s ease;
    color: white;
    font-size: 0.7rem;
    line-height: 10px;
    text-indent: -9999px; /* Cache le texte du pourcentage si désiré */
}

.loading-spinner small[b-rgmj0ej0gp] {
    color: #6c757d;
    font-size: 0.9rem;
}
/* Conteneur principal - NE TOURNE PAS */
.loader-container[b-rgmj0ej0gp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    animation: none; /* Désactive toute animation */
}

/* Contenu du loader - NE TOURNE PAS */
.loader-content[b-rgmj0ej0gp] {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: none; /* Désactive toute animation */
}

    /* SEUL le spinner-border tourne */
    .loader-content .spinner-border[b-rgmj0ej0gp] {
        width: 4rem;
        height: 4rem;
        border-width: 0.25rem;
        border-color: #0d6efd transparent transparent transparent;
        animation: spinner-border-b-rgmj0ej0gp 0.75s linear infinite; /* Animation uniquement ici */
    }

/* Animation spécifique pour le spinner */
@keyframes spinner-border-b-rgmj0ej0gp {
    to {
        transform: rotate(360deg);
    }
}

/* Tous les autres éléments - PAS D'ANIMATION */
.loader-content h5[b-rgmj0ej0gp],
.loader-content p[b-rgmj0ej0gp],
.loader-content .progress[b-rgmj0ej0gp],
.loader-content small[b-rgmj0ej0gp] {
    animation: none;
    transform: none;
}

/* Barre de progression - animation seulement sur la barre */
.loader-content .progress-bar[b-rgmj0ej0gp] {
    animation: progress-bar-stripes-b-rgmj0ej0gp 1s linear infinite;
}

@keyframes progress-bar-stripes-b-rgmj0ej0gp {
    0% {
        background-position: 1rem 0;
    }

    100% {
        background-position: 0 0;
    }
}
/* Désactiver toutes les animations potentielles */
.loader-container[b-rgmj0ej0gp],
.loader-content[b-rgmj0ej0gp],
.loader-content h5[b-rgmj0ej0gp],
.loader-content p[b-rgmj0ej0gp],
.loader-content .progress[b-rgmj0ej0gp],
.loader-content small[b-rgmj0ej0gp] {
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

    /* Seul le spinner garde son animation */
    .loader-content .spinner-border[b-rgmj0ej0gp] {
        animation: spinner-border-b-rgmj0ej0gp 0.75s linear infinite !important;
    }
/* /Components/Pages/Utilisateurs.razor.rz.scp.css */
/* ===== VARIABLES COMPACTES ===== */
[b-88yzovsjcz] {
    --primary: #0066cc;
    --primary-dark: #004080;
    --success: #28a745;
    --success-dark: #1e7e34;
    --warning: #ffc107;
    --warning-dark: #856404;
    --danger: #dc3545;
    --danger-dark: #721c24;
    --info: #17a2b8;
    --white: #fff;
    --light: #f8f9fa;
    --border: #dee2e6;
    --text: #495057;
    --text-light: #6c757d;
}

/* ===== LAYOUT COMPACT ===== */
.content-area[b-88yzovsjcz] {
    padding: 1rem;
}

/* ===== ALERTES MINIMALES ===== */
.alert-modern[b-88yzovsjcz] {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.alert-success[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: var(--white);
}

.alert-danger[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--danger), var(--danger-dark));
    color: var(--white);
}

.alert-warning[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--warning), #e0a800);
    color: #212529;
}

.alert-info[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

/* ===== CARTES COMPACTES ===== */
.modern-card[b-88yzovsjcz] {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.card-body-custom[b-88yzovsjcz] {
    padding: 0.75rem 1rem;
}

/* ===== RECHERCHE COMPACTE ===== */
.search-section[b-88yzovsjcz] {
    margin-bottom: 1rem;
}

.search-box[b-88yzovsjcz] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-88yzovsjcz] {
    position: absolute;
    left: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.search-input[b-88yzovsjcz] {
    padding: 0.4rem 0.4rem 0.4rem 2rem;
    height: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    width: 100%;
    font-size: 0.85rem;
}

    .search-input:focus[b-88yzovsjcz] {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
        outline: none;
    }

.btn-clear-search[b-88yzovsjcz] {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-light);
    padding: 2px 6px;
    font-size: 0.8rem;
    cursor: pointer;
}

.search-stats[b-88yzovsjcz] {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== TABLEAU COMPACT ===== */
.table-modern[b-88yzovsjcz] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    table-layout: fixed;
}

    .table-modern thead tr[b-88yzovsjcz] {
        background-color: var(--light);
        border-bottom: 1px solid var(--border);
    }

    .table-modern th[b-88yzovsjcz] {
        padding: 0.6rem 0.8rem;
        font-weight: 600;
        color: var(--text);
    }

    .table-modern tbody tr[b-88yzovsjcz] {
        border-bottom: 1px solid var(--border);
    }

    .table-modern td[b-88yzovsjcz] {
        padding: 0.5rem 0.8rem;
    }

/* ===== BADGES MINIMALISTES ===== */
.badge-modern[b-88yzovsjcz] {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.badge-success[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: var(--white);
}

.badge-danger[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--danger), var(--danger-dark));
    color: var(--white);
}

.badge-info[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--info), #0f6674);
    color: var(--white);
}

.badge-warning[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--warning), #e0a800);
    color: #212529;
}

/* ===== BOUTONS COMPACTS ===== */
.btn-group-sm[b-88yzovsjcz] {
    display: flex;
    gap: 2px;
}

    .btn-group-sm .btn[b-88yzovsjcz] {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }

.btn-outline-primary[b-88yzovsjcz] {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

    .btn-outline-primary:hover[b-88yzovsjcz] {
        background: var(--primary);
        color: var(--white);
    }

/* ===== POPUP ULTRA COMPACT ===== */
.modern-popup-overlay[b-88yzovsjcz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
}

.modern-popup-container[b-88yzovsjcz] {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
}

/* Header compact */
.modern-popup-header[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modern-popup-title[b-88yzovsjcz] {
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

    .modern-popup-title i[b-88yzovsjcz] {
        color: var(--white) !important;
        font-size: 1rem;
    }

/* Bouton fermeture compact */
.modern-popup-close[b-88yzovsjcz] {
    background: rgba(255,255,255,0.2) !important;
    border: none !important;
    color: var(--white) !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

    .modern-popup-close i[b-88yzovsjcz] {
        color: var(--white) !important;
        font-size: 1rem;
    }

/* Corps compact */
.modern-popup-body[b-88yzovsjcz] {
    padding: 1rem;
}

.popup-form-grid[b-88yzovsjcz] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.popup-form-row[b-88yzovsjcz] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 576px) {
    .popup-form-row[b-88yzovsjcz] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.popup-form-group[b-88yzovsjcz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-form-label[b-88yzovsjcz] {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 0;
}

    .popup-form-label.required[b-88yzovsjcz]:after {
        content: " *";
        color: var(--danger);
        font-size: 0.8rem;
    }

.popup-form-control[b-88yzovsjcz] {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.85rem;
    width: 100%;
}

    .popup-form-control:focus[b-88yzovsjcz] {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
        outline: none;
    }

/* Input group compact */
.input-group[b-88yzovsjcz] {
    display: flex;
    align-items: center;
}

    .input-group .popup-form-control[b-88yzovsjcz] {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        flex: 1;
    }

    .input-group .btn-outline-secondary[b-88yzovsjcz] {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 100%;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        border: 1px solid var(--border);
        border-left: none;
        background: var(--white);
    }

/* Switch compact */
.popup-switch[b-88yzovsjcz] {
    width: 40px;
    height: 20px;
    appearance: none;
    background: #e9ecef;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    margin-right: 6px;
}

    .popup-switch:checked[b-88yzovsjcz] {
        background: var(--success);
    }

    .popup-switch[b-88yzovsjcz]:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--white);
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: 0.2s;
    }

    .popup-switch:checked[b-88yzovsjcz]:before {
        left: 22px;
    }

.popup-switch-text[b-88yzovsjcz] {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer compact */
.modern-popup-footer[b-88yzovsjcz] {
    padding: 0.75rem 1rem;
    background: var(--light);
    border-top: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* Boutons footer compacts */
.btn-modern[b-88yzovsjcz] {
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-primary-modern[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
}

    .btn-primary-modern i[b-88yzovsjcz] {
        color: var(--white) !important;
        font-size: 0.85rem;
    }

.btn-secondary-modern[b-88yzovsjcz] {
    background: #6c757d;
    color: var(--white) !important;
}

/* ===== NOTIFICATIONS COMPACTES ===== */
.popup-notification[b-88yzovsjcz] {
    margin: 0.5rem 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    animation: slideIn-b-88yzovsjcz 0.2s ease;
}

    .popup-notification ul[b-88yzovsjcz] {
        margin: 0;
        padding-left: 1rem;
    }

    .popup-notification li[b-88yzovsjcz] {
        margin: 0;
        font-size: 0.8rem;
    }

.popup-notification-info[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
}

.popup-notification-success[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: var(--white) !important;
}

.popup-notification-warning[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--warning), #e0a800);
    color: #212529 !important;
}

.popup-notification-danger[b-88yzovsjcz] {
    background: linear-gradient(135deg, var(--danger), var(--danger-dark));
    color: var(--white) !important;
}

.popup-notification i[b-88yzovsjcz],
.popup-notification .btn-close-notification[b-88yzovsjcz],
.popup-notification .btn-close-notification i[b-88yzovsjcz] {
    color: inherit !important;
}

.btn-close-notification[b-88yzovsjcz] {
    background: rgba(255,255,255,0.2) !important;
    border: none !important;
    color: inherit !important;
    cursor: pointer;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* ===== TEXTE D'AIDE COMPACT ===== */
.form-text.text-muted[b-88yzovsjcz] {
    font-size: 0.7rem;
    margin-top: 1px;
    color: var(--text-light) !important;
}

.text-danger.small[b-88yzovsjcz] {
    font-size: 0.7rem;
    margin-top: 1px;
    color: var(--danger);
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn-b-88yzovsjcz {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SCROLLBAR FINE ===== */
.modern-popup-container[b-88yzovsjcz]::-webkit-scrollbar {
    width: 4px;
}

.modern-popup-container[b-88yzovsjcz]::-webkit-scrollbar-thumb {
    background: #c1c9d0;
    border-radius: 2px;
}
/* Conteneur pour l'input avec icône */
.password-input-container[b-88yzovsjcz] {
    position: relative;
    width: 100%;
}

.password-input[b-88yzovsjcz] {
    width: 100%;
    padding-right: 35px !important; /* Espace pour l'icône */
}

.password-toggle-icon[b-88yzovsjcz] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

    .password-toggle-icon:hover[b-88yzovsjcz] {
        color: var(--primary-color);
    }

    .password-toggle-icon i[b-88yzovsjcz] {
        font-size: 1rem;
    }
.table-modern th:nth-child(1)[b-88yzovsjcz],
.table-modern td:nth-child(1)[b-88yzovsjcz] {
    width: 60px; /* CODE */
}

.table-modern th:nth-child(2)[b-88yzovsjcz],
.table-modern td:nth-child(2)[b-88yzovsjcz] {
    width: auto; /* NOM */
}

.table-modern th:nth-child(3)[b-88yzovsjcz],
.table-modern td:nth-child(3)[b-88yzovsjcz] {
    width: 70px; /* PROFIL */
}

.table-modern th:nth-child(4)[b-88yzovsjcz],
.table-modern td:nth-child(4)[b-88yzovsjcz] {
    width: 90px; /* ACCES */
}

.table-modern th:nth-child(5)[b-88yzovsjcz],
.table-modern td:nth-child(5)[b-88yzovsjcz] {
    width: 70px; /* STATUS */
}

.table-modern th:nth-child(6)[b-88yzovsjcz],
.table-modern td:nth-child(6)[b-88yzovsjcz] {
    width: 110px; /* ACTIONS */
    text-align: left;
}
.table-modern th[b-88yzovsjcz],
.table-modern td[b-88yzovsjcz] {
    padding: 0.4rem 0.6rem;
}
.table-modern th[b-88yzovsjcz],
.table-modern td[b-88yzovsjcz] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.badge-modern[b-88yzovsjcz] {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.75rem;
}
.table-modern td:nth-child(4)[b-88yzovsjcz] {
    text-align: center;
}
    /* Alignement des badges */
    .table-modern td:nth-child(3) .badge-modern[b-88yzovsjcz],
    .table-modern td:nth-child(4) .badge-modern[b-88yzovsjcz],
    .table-modern td:nth-child(5) .badge-modern[b-88yzovsjcz] {
        display: inline-block;
        padding: 3px 8px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

/* Pour le texte "Chargement..." */
.table-modern td:nth-child(4)[b-88yzovsjcz] {
    color: var(--text-light);
}

    /* Pour le tiret des non-clients */
    .table-modern td:nth-child(4) .text-muted[b-88yzovsjcz] {
        font-size: 0.8rem;
    }

/* Style spécifique pour les badges */
.table-modern td:nth-child(3)[b-88yzovsjcz] {
    text-align: left;
}
