/* 
 * Archivo específico para desactivar todos los efectos hover en la aplicación
 * Este archivo debe ser incluido después de todos los demás archivos CSS
 */

/* Regla global para desactivar todos los efectos hover */
button,
.button,
.button-download,
.button-share,
.action-button,
.share-option,
a {
    transition: none !important;
}

/* Específicamente desactivar transformaciones en hover */
button:hover,
.button:hover,
.button-download:hover,
.button-share:hover,
.action-button:hover,
.share-option:hover,
a:hover {
    transform: none !important;
    transition: none !important;
}

/* Mantener colores originales en hover */
.button-download:hover {
    background-color: #ffffff !important;
}

.button-share:hover {
    background-color: #1a73e8 !important;
}

.share-option:hover {
    background-color: transparent !important;
}

/* Desactivar efectos active */
button:active,
.button:active,
.button-download:active,
.button-share:active,
.action-button:active,
.share-option:active,
a:active {
    transform: none !important;
}
