/* ═══════════════════════════════════════════════════════════════════════════
   11. CUSTOM MULTI-SELECT
   ═══════════════════════════════════════════════════════════════════════════ */
.custom-multiselect {
    position: relative;
    width: 160px;
    font-size: 11px;
}

.select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
}

.select-box:hover {
    border-color: #4ECDC4;
    background: rgba(0, 0, 0, 0.5);
}

.select-box .arrow {
    font-size: 10px;
    margin-left: 8px;
    color: #4ECDC4;
}

.custom-multiselect .checkboxes {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.custom-multiselect .checkboxes.expanded {
    display: block;
}

.custom-multiselect label {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.1s;
    color: rgba(255, 255, 255, 0.8);
}

.custom-multiselect label:hover {
    background: rgba(78, 205, 196, 0.15);
    color: white;
}

.custom-multiselect input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #4ECDC4;
    cursor: pointer;
}