/* .toggleSwitch {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000000b;
    border-radius: 2rem;
    width: 20px;
    height: 10px;

} */

.toggleSwitch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 30px;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.toggleSwitch::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px #00000010;
    transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* For toggled/active state, you can use a class like .active */
.active .toggleSwitch, .toggleSwitch.active {
    background-color: var(--surface-text-main);
}
.active .toggleSwitch::before, .toggleSwitch.active::before {
    transform: translateX(14px);
}
