.custom-switch .custom-control-label::before {
    background-color: #ccc; /* Background del switch cuando está apagado */
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: green !important; /* Color de fondo cuando el switch está activo */
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: white; /* Color del círculo del switch */
}