/* User Profile Dropdown Styles */
.user-profile-nav {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Toggle Button Styles */
.user-profile-nav .dropdown-toggle {
    cursor: pointer;
    display: inline-block;
}

/* Icon in Toggle Button */
.user-profile-nav .icon-user-o {
    font-size: 1.4rem;
    color: #359afe;
}

/* Dropdown Menu Container */
.user-profile-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #359afe;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
}

/* Dropdown Menu Items */
.user-profile-nav .dropdown-menu li {
    width: 100%;
}

/* Dropdown Menu Links */
.user-profile-nav .dropdown-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.user-profile-nav .dropdown-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Icons in Dropdown */
.user-profile-nav .dropdown-menu .nav-link i {
    margin-left: 8px;
    font-size: 1.1rem;
}

/* User Name Item Separator */
.user-profile-nav .dropdown-menu li:first-child .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .user-profile-nav {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .user-profile-nav {
        display: none;
    }
}