.ws-casino-options {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ws-toggle-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: .75rem;
    cursor: pointer;
}

.ws-toggle-input {
    display: none;
}

.ws-toggle-switch {
    width: 2.25rem;
    height: 1.25rem;
    background: var(--badge-bgr);
    border-radius: 9999px;
    padding: 0.125rem;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: background-color 0.2s ease, justify-content 0.2s ease;
}

.ws-toggle-switch::before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--alternate-bg);
    border-radius: 50%;
    box-shadow: 0 0.0625rem 0.125rem -0.0625rem var(--skeumorphic-shadow2);
    transition: transform 0.2s ease;
    transform: translateX(0);
}

.ws-toggle-input:checked + .ws-toggle-switch {
    background: var(--required);
    justify-content: flex-end;
}

.ws-toggle-input:checked + .ws-toggle-switch::before {
    transform: translateX(0);
}

.ws-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    color: var(--icon-color);
    transition: color 0.2s ease;
}
