.custom-select {
    position: relative;
    /* flex: 1 1 200px; */
    min-width: 180px;
}
.custom-select__native {
    display: none;
}
.custom-select__display {
    width: 100%;
    padding: 12px 44px 12px 16px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: linear-gradient(135deg, rgba(246, 248, 252, 0.96), #fff);
    color: #0f172a;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    position: relative;
}
.custom-select__display::after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 0.9rem;
    pointer-events: none;
}
.custom-select__display:hover {
    border-color: rgba(79, 70, 229, 0.85);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.18);
    transform: translateY(-1px);
}
.custom-select__display:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}
.custom-select__dropdown {
    position: absolute;
    width: 100%;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    max-height: 260px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}
.custom-select.open .custom-select__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.custom-select__option {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.custom-select__option + .custom-select__option {
    margin-top: 4px;
}
.custom-select__option:hover {
    background: rgba(59, 130, 246, 0.08);
}
.custom-select__option.is-active {
    background: rgba(79, 70, 229, 0.15);
    font-weight: 600;
    color: #1f1f38;
}
.custom-select__option.is-disabled {
    color: #94a3b8;
    cursor: not-allowed;
    background: transparent;
}