/* =============== NAVBAR & SIDEBAR LAYOUT =============== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: #10152f;
    border-bottom: 2px solid #22305d; /* Séparateur horizontal plus clair */
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Sidebar structure */
.sidebar {
    background-color: #161C37;
    border-right: 2px solid #22305d; /* Séparateur vertical plus clair */
}

.navbar-content {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 21px; /* Espacement entre les boutons de navigation */
}

/* Barre de recherche UI */
.search-wrapper {
    flex: 0 1 450px;
    margin: 0 auto;
    width: 300px;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(158, 108, 255, 0.5);
    border-radius: 20px;
    padding: 8px 15px;
}

.search-input {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    width: 100%;
    outline: none;
}

.logo-link img {
    height: 80px;    /* Ajustez la hauteur selon vos besoins */
    width: 100%;      /* Garde les proportions d'origine */
    display: block;   /* Évite les espaces vides sous l'image */
}
