/* Shared profile dropdown action links — pill button style across dashboards */

.profile-dropdown-content .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 10px;
    padding: 10px 14px;
    width: calc(100% - 20px);
    border-radius: 10px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-light) !important;
    background: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.profile-dropdown-content .dropdown-item:hover,
.profile-dropdown-content .dropdown-item:focus-visible {
    background: color-mix(in srgb, var(--primary) 88%, #000);
    color: var(--text-light) !important;
}

.profile-dropdown-content .dropdown-item.disabled-link {
    background: color-mix(in srgb, var(--primary) 35%, var(--bg-secondary));
    color: var(--text-muted) !important;
    cursor: not-allowed;
    pointer-events: none;
}

.profile-dropdown-content .dropdown-item i {
    width: 20px;
    text-align: center;
    color: inherit;
}

.profile-dropdown-content .dropdown-divider {
    margin: 8px 0;
}
