.tsc-vs-field {
    display: grid;
}

.tsc-vs-native select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.tsc-vs-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tsc-vs-option {
    border: 1px solid #d4d4d8;
    background: #fff;
    border-radius: 6px;
    height: 28px;
    line-height: 28px;
    padding: 0 6px;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tsc-vs-option.is-selected {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.tsc-vs-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.tsc-vs-option--color {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    padding: 0;
    background: var(--tsc-vs-color, #fff);
}

.tsc-vs-option--image {
    height: 60px;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    width: 60px;
}

.tsc-vs-option__media,
.tsc-vs-option__img {
    display: block;
    width: 100%;
    height: 100%;
}

.tsc-vs-option__img {
    object-fit: cover;
}

.tsc-vs-list {
    width: 100%;
    min-height: 2.5rem;
    border-radius: 6px;
    border: 1px solid #d4d4d8;
    background: #fff;
    padding: 0.5rem 0.75rem;
}