.jans-vertical-switch {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--jans-vertical-switch-height, 46px);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}

.jans-vertical-switch__option {
    flex: 1 1 50%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jans-vertical-switch__option + .jans-vertical-switch__option {
    border-top: 1px solid #cbd5e1;
}

.jans-vertical-switch__option.active {
    background: var(--rz-secondary, #6b7280);
    color: #ffffff;
}

.jans-vertical-switch--no-radius {
    border-radius: 0;
}

.connected-form .jans-vertical-switch {
    border-radius: 0;
}
