/* ==========================
   HEADER
   ========================== */

   header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
}

/* ==========================
   ALIGNEMENT DU HEADER
   ========================== */

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left img {
    margin-right: 20px;
}

/* ==========================
   STYLE DU CARRÉ UTILISATEUR
   ========================== */

.user-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #334A5A;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: capitalize;
    transition: background-color 0.3s ease-in-out;
    margin-right: 15px;
}

.user-box a {
    text-decoration: none;
    color: white;
}

.user-box:hover {
    background-color: #1e2f3a;
}

/* ==========================
   NAVIGATION
   ========================== */

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav .active {
    color: #CCB5A5;
}

/* ==========================
   STYLE DES BOUTONS
   ========================== */

.btn {
    padding: 10px 20px;
    border: none;
    background: #334A5A;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

.btn:hover {
    background-color: #1e2f3a;
}

/* ==========================
   BOUTON ADMIN
   ========================== */

.btn-admin {
    background-color: #334A5A;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-admin:hover {
    background-color: #e0a800;
}
