.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-top: 12px;
    z-index: 200;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 16px;
    height: 64px;
    background: #0006;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 100px;
    width: 100%;
    font-size: 24px;
    line-height: 140%;
    color: #fff3;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.custom-select-trigger.has-value {
    color: #fff;
}

.custom-select-trigger:hover {
    border: 1px solid hsla(0, 0%, 100%, .6);
}

.custom-select-trigger.is-open {
    border: 1px solid hsla(0, 0%, 100%, .6);
}

.select-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: #fff;
}

.select-arrow.rotated {
    transform: rotate(180deg);
}

/* Dropdown */
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1919;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 24px;
    padding: 8px;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.custom-select-dropdown::-webkit-scrollbar {
    width: 0;
}

.custom-select-option {
    padding: 12px 16px;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    cursor: pointer;
    border-radius: 16px;
    transition: background 0.15s ease;
}

.custom-select-option:hover {
    background: hsla(0, 0%, 100%, .1);
}

.custom-select-option.selected {
    background: hsla(0, 0%, 100%, .15);
    color: #00e092;
}

/* Error state */
.custom-select-trigger.select-error {
    box-shadow: 0 10px 20px -12px #f12b2b !important;
    color: #f12b2b !important;
    border: 2.5px solid #f12b2b !important;
    font-weight: bolder !important;
}

/* Mobile styles */
@media (max-width: 768px) {
    .custom-select-trigger {
        margin-top: 8px;
        height: 48px;
        padding: 13px 16px;
        font-size: 16px;
    }

    .custom-select-dropdown {
        border-radius: 16px;
    }

    .custom-select-option {
        font-size: 16px;
        padding: 10px 14px;
    }

    .select-arrow {
        width: 14px;
        height: 14px;
    }
}