#matchtrader-variant-switcher{
    margin: auto;
}
.matchtrader-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0px;
    justify-content: flex-start;
}

.matchtrader-radio-option {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.matchtrader-radio-option.disabled{
    pointer-events: none;
    cursor: not-allowed;
}

.matchtrader-radio-option span{
    position: absolute;
    font-size: 8px;
    top: -20px;
    color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    border-radius: 10px;
    padding: 2px 5px;
}

.matchtrader-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.matchtrader-radio-option label {
    padding: 10px 20px;
    border: 1px solid var(--e-global-color-accent);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--e-global-color-text);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matchtrader-radio-option input[type="radio"]:checked + label {
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
