/* ColisFroid v2 — styles complémentaires Bootstrap 5.3 */

/* Navbar brand */
.navbar-brand img {
    filter: brightness(1.1);
}

/* En-têtes de page */
h1 {
    color: #165387;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

/* Tableaux : alignement centré des th par défaut */
th {
    text-align: center;
}
td {
    vertical-align: middle;
}

/* Colonnes numériques */
.text-end th,
th.text-end {
    text-align: right;
}

/* Formulaires compacts sur les pages tableau */
.form-control-sm,
.form-select-sm {
    font-size: 0.8rem;
}

/* Badge statut */
.badge {
    font-size: 0.75rem;
}

/* Carte formulaire d'ajout en comptabilité */
.card-header.fw-bold {
    background-color: #f0f4f8;
}

/* Selects avec options longues : tronquer avec ellipsis */
select.form-select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Highlight ligne hover dans les tableaux de données */
.table-hover tbody tr:hover {
    background-color: rgba(22, 83, 135, 0.05);
}

/* PDF link styling */
a[href$=".pdf"] {
    font-weight: 500;
}

/* Page de connexion : pas de padding container */
body > .container-fluid:empty {
    display: none;
}
