.switch-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
}

.toggle-switch {
    opacity: 0;
}

.switch-label {
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.switch-label::after {
    content: '';
    cursor: pointer;
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.toggle-switch:checked + .switch-label {
    background: linear-gradient(24deg, #964CE8 7.71%, #4E60FF 90.69%);
}

.toggle-switch:checked + .switch-label::after {
    transform: translateX(30px);
}

.switch-text {
    font-size: 14px;
    color: var(--tblack);
}