.toggle-pill {
    position: relative;
    display: flex;
    align-items: center;
    width: 48px;      /* reduced from 75px */
    height: 24px;     /* reduced from 40px */
    background: #e5e7eb;
    border-radius: 999px;
    box-shadow: inset 0 2px 8px #0001;
    padding: 2px;     /* reduced from 4px */
}
.toggle-input {
    display: none;
}
.toggle-thumb {
    position: absolute;
    top: 2px;         /* reduced from 4px */
    left: 2px;        /* reduced from 4px */
    width: 20px;      /* reduced from 80px */
    height: 20px;     /* reduced from 32px */
    background: #6366f1;
    border-radius: 999px;
    box-shadow: 0 2px 8px #0002;
    transition: transform 0.3s;
    z-index: 1;
}
.toggle-input:checked + .toggle-thumb {
    transform: translateX(24px); /* 48 - 20 - 2*2 = 24px */
}
.toggle-label-text {
    font-weight: 600;
    color: #374151;
    user-select: none;
}