body { margin-top: 10px; }

/* Fond global plus doux */
body.bg-light {
    background: #f5f7fb;
}

/* Titres de pages avec icône ronde */
.page-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.page-title-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.4rem;
}

/* Sous-titre discret */
.page-subtitle {
    color: #6c757d;
    margin-top: -0.25rem;
    font-size: 0.9rem;
}

/* Cartes de page */
.page-card {
    border-radius: 0.75rem;
}

/* Cartes statistiques */
.stat-card {
    border-radius: 0.75rem;
    transition: 0.15s ease;
}
.stat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

/* Toolbar listes (recherche + actions) */
.list-toolbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Table un peu plus élégante */
.table-sm td, .table-sm th {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
}

