/* User Dropdown Styles */
.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(4px) !important;
    color: #fff !important;
}

.dropdown-item:hover i {
    transform: scale(1.1) !important;
}

/* Profile item specific hover */
.dropdown-item[href*="profile"]:hover {
    background: rgba(31, 212, 123, 0.15) !important;
    color: #1fd47b !important;
}

/* Logout item specific hover */
.dropdown-item[href*="logout"]:hover {
    background: rgba(255, 107, 107, 0.15) !important;
    color: #ff6b6b !important;
}

/* Dropdown menu animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* User avatar hover effect */
.user-avatar:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.user-avatar:hover .avatar-circle {
    transform: scale(1.1);
}
