/* Profile Dropdown Styles */
.profile-dropdown {
    position: relative;
}

.profile-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.profile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    background: #0a1628;
    border: 1px solid #303842;
    border-radius: 12px;
    padding: 8px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.profile-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #0a1628;
    border: 1px solid #303842;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.profile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.profile-menu-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.profile-menu-divider {
    height: 1px;
    background-color: #303842;
    margin: 8px 0;
}

.agent-profile-dropdown .profile-trigger {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

