:root {
    --color-pink-50: #fdf2f8;
    --color-pink-100: #fce7f3;
    --color-pink-400: #f472b6;
    --color-pink-500: #ec4899;
    --color-pink-600: #db2777;
}

body.theme-blue {
    --color-pink-50: #eff6ff;
    --color-pink-100: #dbeafe;
    --color-pink-400: #60a5fa;
    --color-pink-500: #3b82f6;
    --color-pink-600: #2563eb;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-top: 4px;
    padding: 8px 0;
    list-style: none;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
}

.custom-dropdown li {
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.custom-dropdown li:hover {
    background: var(--color-pink-50);
    color: var(--color-pink-600);
}