/* Estilos para o ícone de perfil */

.profile-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon {
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-icon:hover {
    color: #A0522D;
    transform: scale(1.1);
}

/* Menu dropdown do perfil */
.profile-dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
    color: #333;
    font-size: 14px;
}

.profile-dropdown-item:hover {
    background-color: #f5f5f5;
}

.profile-dropdown-item svg {
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 991px) {
    #user-profile-container {
        margin-left: auto;
    }
    
    .profile-dropdown-menu {
        right: -10px;
    }
}

/* Animação de entrada do dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-dropdown-menu[style*="display: block"] {
    animation: fadeIn 0.2s ease;
}
