body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.head {
    background-color: white;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    /*border-bottom: 1px solid #0fc926;*/
    padding: 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
}

/* Navigation */
nav {
    display: flex;
    gap: 20px;
    margin-right: 20px;
    margin-left: 40px;
}

/* Liens de navigation */
.page,
.nav-user {
    font-size: 20px;
    color: #0fc926;
    text-decoration: none;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.page:hover {
    color: #00dcff;
    transform: translateY(-3px);
}

/* Connexion/Déconnexion */
.auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
    right: 20px;
    position: fixed;
}

.user-info,
.auth-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.pdp_user {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}
.mes-rdv{
    position:absolute;
    top:35px;
    left:1060px;
}

.bloc-connexion{
    display:flex;
    position:absolute;
    top:10px;
    right:10px;
}

.connexion,
.inscription,
.deconnexion,
.pseudo {
    font-size: 16px;
    color: #0fc926;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.connexion:hover,
.inscription:hover,
.deconnexion:hover,
.pseudo:hover {
    color: #00dcff;
}

.auth-links.active {
    display: none;
}

.user-info.active {
    display: none;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-auth {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: transparent;
    border-radius: 8px;
    background-color: transparent;
}

.nav-user {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.832);
    position: absolute;
    top: 70px;
    right: -30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #0fc926;
    z-index: 1000;
}

.nav-user.active {
    display: flex;
}

/* Toggle Button */
.nav-toggle {
    display: none;
    background-color: #0fc926;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-right: 40px;
}

/* Responsive Styles */
@media (max-width: 1000px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.832);
        position: absolute;
        top: 120px;
        left: -20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #0fc926;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-user.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}
