/* Container for toggle + text */
.professional-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: -10px !important;
}

/* Hide native checkbox */
.toggle-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Toggle visual */
.toggle-switch {
    display: inline-block;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 26px;
    position: relative;
    transition: background 0.25s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Checked state */
.toggle-wrapper input:checked + .toggle-switch {
    background: #000;
}

.toggle-wrapper input:checked + .toggle-switch::after {
    left: 26px;
}

/* Text label */
.toggle-label {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
    .toggle-switch { width: 44px; height: 22px; }
    .toggle-switch::after { width: 18px; height: 18px; top: 2px; left: 2px; }
    .toggle-label { font-size: 14px; }
}
