.ui-dropdown {
    position: relative;
    width: 100%;
}

.ui-dropdown__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    text-align: left;
    background: transparent;
}

.ui-dropdown__value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-dropdown__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.ui-dropdown[data-state="open"] .ui-dropdown__icon {
    transform: rotate(180deg);
}

.ui-dropdown__content {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;

    width: 100%;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    transition: .2s ease;
}

.ui-dropdown[data-state="open"] .ui-dropdown__content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ui-dropdown__viewport {
    max-height: 280px;
    overflow-y: auto;
    padding: 6px;
}

.ui-dropdown__option {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0 14px;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: .15s ease;
}

.ui-dropdown__option:hover {
    background: #f5f7f6;
}

.ui-dropdown__option.is-selected,
.ui-dropdown__option[aria-selected="true"] {
    background: #0b5d48;
    color: #fff;
}