﻿/* ===================================================
   HIKARI APP - Responsive Utilities (supplement to dashboard.css)
   =================================================== */

/* Button hover effects */
.btn-action:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}
.btn-action:active { transform: translateY(0); }

/* Pulse animation */
.pulse { animation: pulse-green 2s infinite; }
@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    70%  { box-shadow: 0 0 0 15px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Finance / market grids on mobile */
@media (max-width: 768px) {
    .finanzas-grid, .market-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
