/* Styles personnalisés pour l'application */

/* Rendre l'en-tête sticky */
.app-header {
    position: sticky !important;
    top: 20px !important;
    z-index: 1000 !important;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    width: auto;
    max-width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.7rem;
}

/* Style pour le cadre blanc "Connecté en tant que" */
.header-actions .bg-white {
    border-radius: 12px; /* Même arrondi que card-body */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* Même ombre que l'en-tête */
    width: 100%; /* Assure que le cadre a la même largeur que card-body */
}