/* Reset CSS for basic styles */
body,
h1,
h2,
h3,
p,
a,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: left;
    /* Centrer horizontalement */
    justify-content: flex-start;
    /* Aligner en haut de la page */
    min-height: 100vh;
    margin: 0;
    /* Annule la marge par défaut du body */
    max-width: 100%;
    /* Force la largeur maximale à 100% */
}

/* Header styles */
header {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    background-color: hsla(181, 94%, 62%, 0.799);
    font-size: 24px;
    margin-bottom: 10px;
}

/* Logo styles */
img.logo {
    max-width: 10%;
    height: auto;
}

/* Navigation styles */
nav {
    text-align: center;
    margin-top: 15px;
}

nav a {
    color: hsl(238, 82%, 50%);
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.info-client {
    float: right;
    text-align: right;
    margin-right: 20px;
    /* Ajoute une marge à droite pour l'espace */
    width: 100%;
    /* Étend l'élément sur toute la largeur disponible */
    margin-left: 200px;
    /* Compense la largeur du menu */
}

/* Ajoute du style si nécessaire */
.info-client h2 {
    color: #333;
    /* Couleur du texte pour le titre */
}

/* Button styles */
nav button {
    background-color: #fff;
    color: #007bff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer styles */
footer {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}