/* User Account Header Styles */
.uah-user-menu {
    position: relative;
    display: inline-block;
}

.uah-user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.uah-user-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.uah-user-icon {
    color: #ffffff;
}

.uah-username {
    color: #ffffff;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uah-chevron {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.uah-user-trigger:hover .uah-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.uah-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #1a1f2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.uah-user-menu:hover .uah-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.uah-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uah-dropdown-item:last-child {
    border-bottom: none;
}

.uah-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 22px;
}

.uah-dropdown-item svg {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* Login Button */
.uah-login-btn1 {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    height: 30px;
}

.uah-login-btn1:hover {
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .uah-username {
        display: none;
    }
    
    .uah-user-trigger {
        padding: 10px 12px;
    }
    
    .uah-dropdown {
        right: 0;
        min-width: 180px;
    }
}