/* ProspectFoodCRM – Styles personnalisés */

/* ── Typographie ────────────────────────────────────────────────────────── */
body {
    font-size: 0.875rem;
}

.x-small {
    font-size: 0.75rem;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.navbar-brand {
    font-size: 1rem;
    letter-spacing: .02em;
}

/* ── Cartes ──────────────────────────────────────────────────────────────── */
.card {
    border-radius: .5rem;
}

/* ── Tableaux ────────────────────────────────────────────────────────────── */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, .04);
}

/* ── Score badge ──────────────────────────────────────────────────────────── */
.score-bar {
    height: 6px;
    border-radius: 3px;
}

/* ── Bouton xs (taille en dessous de sm) ─────────────────────────────────── */
.btn-xs {
    padding: .1rem .35rem;
    font-size: .75rem;
    border-radius: .2rem;
}

/* ── Carte Leaflet ────────────────────────────────────────────────────────── */
#carte {
    z-index: 0;
}

/* ── Kanban ───────────────────────────────────────────────────────────────── */
.kanban-col {
    border-radius: 0 0 .5rem .5rem;
    transition: background .2s;
}

.kanban-card {
    transition: box-shadow .15s;
}

.kanban-card:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,.15) !important;
}

/* ── Progress bar slim ────────────────────────────────────────────────────── */
.progress {
    border-radius: 3px;
}

/* ── Sidebar scroll ───────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* ── Formulaire compact ───────────────────────────────────────────────────── */
.form-label-sm {
    font-size: .8rem;
    margin-bottom: .2rem;
}

/* ── Code mono ────────────────────────────────────────────────────────────── */
pre, code {
    font-size: .8rem;
}
