/* app/Assets/css/all-page.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Aide à la gestion des tailles de blocs */
    list-style: none;
    text-decoration: none;
}

html, body {
    height: 100vh;
}

body {
    /*position: relative;*/
    display: flex;
    flex-direction: column;
    background-color: #121212;
    color: white !important; /* Le !important force la détection si un autre fichier interfère */
    font-family: system-ui, -apple-system, sans-serif;
}

main {
    flex: 1 0 auto;
}

/* On s'assure que les liens et listes héritent de la couleur blanche du body */
a, li {
    color: inherit;
}

.web-link { padding: 0; }
.profile-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
}