body.fixture-switch-toggle-form {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #111;
    color: #eee;
}

.fixture-wrap {
    max-width: 360px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
    display: inline-block;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #444;
    border-radius: 26px;
    transition: 0.2s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s;
}

.switch input:checked + .slider {
    background: #22c55e;
}

.switch input:checked + .slider::before {
    transform: translateX(22px);
}

.fixture-wrap button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    background: #eee;
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

.fixture-wrap .back-to-index a {
    color: #93c5fd;
}
