/* Money King — minimal custom styles (Tailwind handles everything else) */

/* Scrollbar styling for dark theme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Smooth transitions on page load */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HTMX loading indicator */
.htmx-request {
    opacity: 0.7;
    transition: opacity 200ms;
}

/* Pulse animation for live status dot */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.animate-pulse {
    animation: pulse-dot 2s ease-in-out infinite;
}
