/* shared.css - Common styles for Lakban */

/* Alpine.js cloak */
[x-cloak] { display: none !important; }

/* Heatmap cell animation */
.heatmap-cell {
    transition: transform 0.1s ease;
}
.heatmap-cell:hover {
    transform: scale(1.2);
    z-index: 10;
}

/* HTMX loading indicator */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline;
}
.htmx-request.htmx-indicator {
    display: inline;
}
