.status-picker {
    position: relative;
    display: inline-flex;
}

    .status-picker .status-picker__button {
        /*min-width: 164px;*/
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        font-weight: 600;
        font-size: 0.7rem;
        box-shadow: none;
        border-radius: 12px !important;
        padding: 1px 12px;
    }

.status-picker .status-picker__label {
    flex: 1;
    text-align: left;
}

.status-picker .status-picker__caret {
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.status-picker.is-open .status-picker__caret {
    transform: rotate(180deg);
}

.status-picker .status-picker__menu {
    /*min-width: 164px;*/
    padding: 0.5rem 0;
    box-shadow: var(--vz-dropdown-box-shadow, 0 4px 18px rgba(15, 23, 42, 0.12));
    border-radius: 0.5rem;
}

.status-picker .status-picker__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
}

.status-picker .status-picker__option::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: currentColor;
    opacity: 0.6;
    flex-shrink: 0;
}

.status-picker .status-picker__option:hover {
    background-color: var(--vz-dropdown-link-active-bg, rgba(15, 23, 42, 0.08));
    color: inherit;
}

.status-picker .status-picker__option.active {
    font-weight: 600;
}

.status-picker .status-picker__option.active::before {
    opacity: 1;
}

.status-picker.is-loading .status-picker__button {
    pointer-events: none;
    opacity: 0.65;
}
