    /* Estenedor de la lista */
    .modern-list-group .list-row-item:last-child {
        border-bottom: none !important;
    }

    /* Efecto hover en la fila completa */
    .list-row-item:hover {
        background-color: #f8f9ff !important;
    }

    /* --- Estilos del Switch Moderno --- */
    .modern-switch-container {
        display: inline-flex;
        background-color: #eee;
        border-radius: 50px;
        padding: 3px;
        border: 1px solid #ddd;
    }

    .modern-switch-input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        margin: 0;
        pointer-events: none;
    }

    .modern-switch-label {
        cursor: pointer;
        padding: 4px 15px;
        border-radius: 50px;
        margin: 0;
        font-weight: bold;
        font-size: 0.75rem;
        transition: all 0.2s ease-in-out;
        color: #888;
    }

    /* Estado Seleccionado SÍ */
    .modern-switch-input[value="1"]:checked+.modern-switch-label {
        background-color: #00cba9;
        color: white;
    }

    /* Estado Seleccionado NO */
    .modern-switch-input[value="0"]:checked+.modern-switch-label {
        background-color: #ff5a5f;
        color: white;
    }

    /* SOPORTE PARA TABULACIÓN (Accesibilidad) */
    /* Cuando el usuario llega al switch con el teclado 
    .modern-switch-input:focus+.modern-switch-label {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }*/

    .modern-switch-input:focus+.modern-switch-label {
        outline: 2px solid #00cba9;
        /* O el color primario de tu sistema */
        outline-offset: 3px;
        box-shadow: 0 0 8px rgba(0, 203, 169, 0.5);
        border-radius: 50px;
    }