.gt-toggle-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    cursor: pointer;
    user-select: none;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.toonbtw {margin-top:0px!important;}
.toggle-switch {
    position: relative;
    width: 60px;
    height: 24px;
    background: #E5E7EB;
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.toggle-slider {
    position: absolute;
    width: 19px;
    height: 19px;
    background: #FFFFFF;
    border-radius: 9999px;
    top: 2px;
    left: 2px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.gt-toggle-button.active .toggle-switch {
    background: #00bc7d;
}

.gt-toggle-button.active .toggle-slider {
    left: calc(100% - 21px);
    background: #FFFFFF;
}

.gt-toggle-button:hover .toggle-switch {
    background: #D1D5DB;
}

.gt-toggle-button.active:hover .toggle-switch {
    background: #00bc7d;
}

.gt-toggle-button span {
    color: #1F2937 !important;
    font-weight: 500;
}
.toonbtw .gt-toggle-button span {
    color: #fff !important;
    font-weight: 500;
}

/* Container için margin */
.tax-toggle-prices {
    margin:0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toggle-text-on,
.toggle-text-off {
    position: absolute;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.toggle-text-on {
    left: 8px;
    color: #FFFFFF;
    opacity: 0;
}

.toggle-text-off {
    right: 8px;
    color: #6B7280;
}

.gt-toggle-button.active .toggle-text-on {
    opacity: 1;
}

.gt-toggle-button.active .toggle-text-off {
    opacity: 0;
}