/* Cool Neon Category Select Dropdown */
.category-select-neon {
    background: linear-gradient(135deg, rgba(22, 241, 211, 0.1) 0%, rgba(13, 207, 184, 0.08) 100%) !important;
    border: 3px solid #16f1d3 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    box-shadow: 
        0 0 25px rgba(22, 241, 211, 0.4),
        0 0 50px rgba(22, 241, 211, 0.2),
        inset 0 0 15px rgba(22, 241, 211, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-shadow: 0 0 10px rgba(22, 241, 211, 0.5);
}

.category-select-neon:hover {
    background: linear-gradient(135deg, rgba(22, 241, 211, 0.15) 0%, rgba(13, 207, 184, 0.12) 100%) !important;
    box-shadow: 
        0 0 35px rgba(22, 241, 211, 0.6),
        0 0 70px rgba(22, 241, 211, 0.3),
        inset 0 0 20px rgba(22, 241, 211, 0.15) !important;
    transform: translateY(-2px);
}

.category-select-neon:focus {
    background: linear-gradient(135deg, rgba(22, 241, 211, 0.15) 0%, rgba(13, 207, 184, 0.12) 100%) !important;
    border-color: #1ffde3 !important;
    box-shadow: 
        0 0 40px rgba(22, 241, 211, 0.7),
        0 0 80px rgba(22, 241, 211, 0.4),
        inset 0 0 25px rgba(22, 241, 211, 0.2) !important;
    outline: none !important;
}

.category-select-neon option {
    background: #0f1823 !important;
    color: #fff !important;
    padding: 14px 18px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(22, 241, 211, 0.15);
}

/* Style for the dropdown when open */
.category-select-neon option:hover,
.category-select-neon option:checked,
.category-select-neon option:focus {
    background: linear-gradient(135deg, rgba(22, 241, 211, 0.25) 0%, rgba(13, 207, 184, 0.2) 100%) !important;
    color: #1ffde3 !important;
    font-weight: 700 !important;
}

/* Category description helper text below select */
.category-description {
    font-size: 14px;
    color: #16f1d3 !important;
    background: rgba(22, 241, 211, 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
    min-height: 20px;
    text-shadow: 0 0 10px rgba(22, 241, 211, 0.6);
    border: 1px solid rgba(22, 241, 211, 0.3);
}

