@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #0f172a;
    color: #f3f4f6;
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Onglets de la fiche client */
.tab-btn {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    border-bottom: 2px solid transparent;
    transition: all .15s;
    white-space: nowrap;
}
.tab-btn:hover { color: #e2e8f0; }
.tab-btn.tab-active { color: #ffffff; border-bottom-color: #3b82f6; }

/* Champs de la fiche */
.f-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.f-input {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    margin-bottom: 12px;
    border-radius: 6px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #334155;
    outline: none;
    font-size: 14px;
    transition: border-color .15s;
}
.f-input:focus { border-color: #3b82f6; }

.section-title {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

/* Cartes d'audit */
.audit-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 14px;
}
.audit-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.audit-value {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

/* Réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
