/* ==================== CONTEXT MENU STYLES ==================== */

.context-menu {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(-10px);
    transition: all 0.2s ease;
    /* Ensure menu is scrollable on small screens */
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.context-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.context-menu-header {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 4px;
}

.context-menu-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #2c3e50;
}

.context-menu-item:hover {
    background: #f5f7fa;
}

.context-menu-item.active {
    background: #e3f2fd;
    color: #3498db;
    font-weight: 600;
}

.context-menu-icon {
    font-size: 18px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.context-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 4px 0;
}

.context-menu-item .radio-indicator {
    font-size: 14px;
    width: 16px;
    color: #3498db;
    flex-shrink: 0;
    margin-right: -4px;
}

.context-menu-item.checked {
    background: #e3f2fd;
    font-weight: 500;
}

