/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
/* Botón desactivado */
.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/* Botón activado */
.btn-enabled {
    opacity: 1;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

/* Animación al activarse */
.animate-btn {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(0.96); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}
