/*
 * It is advised not to edit the smartadmin_production.css
 * as this will override any changes you make in the 
 * later versions of this theme. 
 * 
 * We advise that you use use this CSS to override 
 * SmartAdmin styles. 
 * 
 * Rename the stylesheet to whatever your liking so it will stay
 * unique to you with each update of SmartAdmin.
 */

/*
 * INDEX
 * 
 * - HTML
 * - BODY
 * - CUSTOM STYLES
 */

 .deshabilitado {
    position: relative; /* Establece la posición relativa para que el texto superpuesto se posicione correctamente */
    pointer-events: none;
    opacity: 0.5;
}

.texto-superpuesto {
    position: absolute; /* Establece la posición absoluta para superponer el texto */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Centra el texto horizontal y verticalmente */
    color: red; /* Color del texto */
    font-weight: bold; /* Negrita */
    font-size: 18px; /* Tamaño de fuente */
    text-align: center; /* Alineación centrada */
}

 