/* ============================================================================
   LogiFlotte — ajustements spécifiques au dashboard.
   ============================================================================ */

/* Les stat-grid sont affichés plus généreusement sur le dashboard */
.app-content > .stat-grid:first-child {
    margin-bottom: var(--space-6);
}

/* Section "Liens rapides" : boutons alignés côte à côte */
.card-body > .btn + .btn {
    margin-left: var(--space-2);
}

/* Cartes bilan finance (dashboard) : alignement des valeurs */
.bilan-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: var(--font-size-sm);
}
.bilan-row:last-child { border-bottom: none; }
.bilan-row .bilan-value {
    font-weight: 700;
    font-family: 'Inter', monospace;
    color: var(--color-text);
}
.bilan-row.is-total {
    border-top: 2px solid var(--color-text);
    border-bottom: none;
    margin-top: var(--space-2);
    padding-top: var(--space-3);
    font-size: var(--font-size-md);
    font-weight: 700;
}
