/* Profile Dropdown Styles */
.user-profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: #f8fafc;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #e2e8f0;
}

.user-profile-dropdown:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(79, 70, 229, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
    max-width: 120px;
}

.user-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 240px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

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

.dropdown-header {
    padding: 12px 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.dropdown-header h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dropdown-header p {
    font-size: 11px;
    color: var(--text-light);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f8faff;
    color: var(--primary);
}

.dropdown-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.dropdown-item.logout {
    color: #ef4444;
    margin-top: 5px;
}

.dropdown-item.logout i {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: #fef2f2;
}

/* Auth Buttons Container */
#auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
