/* =========================
   UI SELECT (based on your MOCK)
   ========================= */

.ui-select{ position: relative; width: 100%; }

.ui-select__label{
    position: absolute;
    top: -9px;
    left: 14px;
    background: #fff;
    padding: 0 8px;
    font-size: 13px;
    color: #202020;
    z-index: 2;
    font-weight: 500;
}

.ui-select__button{
    width: 100%;
    height: 56px;
    border-radius: 14px;
    border: 2px solid #5D6C80;
    background: #fff;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ui-select__value{
    font-size: 18px;
    font-weight: 500;
    color: #202020;
}

.ui-select__caret{
    font-size: 14px;
    color: #202020;
    line-height: 1;
}

/* Dropdown list */
.ui-select__list{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 14px;
    border: 1px solid #DEE6EA;
    box-shadow: 0 14px 24px rgba(15,23,42,.12);
    padding: 8px 0;
    max-height: 260px;
    overflow: auto;
    z-index: 99999;
}

.ui-select.is-open .ui-select__list{ display: block; }

.ui-select__option{
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #202020;
    background: #fff;
    font-size: 14px;
    border: 0;
    cursor: pointer;
}

.ui-select__option:hover{ background:#F8F9FB; }
.ui-select__option.is-active{ font-weight: 700; }
