/* Styles pour le header */
.header {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0);
    padding: 1rem;
}

/* Styles pour les liens de navigation */
.nav-link {
    padding: 0.5rem 1rem;
    color: #CCCCCC;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #eeeeee93;
    color: #12121293;
    border-radius: 9999px;
}

.nav-link.active {
    background-color: #eeeeee;
    color: #121212;
    border-radius: 9999px;
}

/* Styles pour les boutons d'action */
.action-button {
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: #f3f4f6;
}

/* Styles pour l'avatar et le menu déroulant */
.profile-button {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.profile-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.profile-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid white;
    aspect-ratio: 1;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu-content {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    width: 16rem;
}

.dropdown-menu-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dropdown-menu-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    transition: all 0.3s ease;
}

.dropdown-menu-link:hover {
    background-color: #f3f4f6;
}

/* Gestion de l'affichage du menu déroulant */
.profile-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
