/* 6.1. Ajustements Admin Bar (non-responsive) */
body.admin-bar #wpadminbar { /* Forcer la position fixed de l'admin bar */
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 99998 !important; /* Juste en dessous de certains overlays custom */
}
.admin-bar { /* Ajustement hauteur minimale pour le footer sticky */
    min-height: calc(100vh - 32px);
}
.admin-bar .site-header {
    top: 32px;
}
.admin-bar .pagination-container { /* Concerne la pagination de la liste d'articles */
    top: calc(var(--header-height) + 32px);
}
.admin-bar .site-content { /* Marge et hauteur minimale du contenu principal */
    margin-top: calc(var(--header-height) + 32px); /* header + admin bar */
    min-height: calc(100vh - 32px - (var(--header-height) + 32px) - 113px); /* 113px est une estimation du footer, à ajuster */
}
.admin-bar .single-post-navigation { /* Pagination article unique */
    top: calc(var(--header-height) + 32px);
}
/* Ajustement pour le template "Contenu Vide" avec Admin Bar */
body.admin-bar.page-template-page-empty .site-main-empty-content {
    margin-top: calc(var(--header-height) + 32px);
}