/* Tailwind CSS entry point — compiled via CDN in _Layout.cshtml */
/* Additional custom styles below */

/* Tremor chart containers */
[id$="-chart"] {
    width: 100%;
}

/* HTMX transitions */
.htmx-indicator {
    opacity: 0;
    transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator {
    opacity: 1;
}
.htmx-request.htmx-indicator {
    opacity: 1;
}

/* Smooth page transitions */
.htmx-swapping {
    opacity: 0;
    transition: opacity 200ms ease-out;
}

/* Flowbite overrides */
[type="text"]:focus,
[type="number"]:focus,
[type="email"]:focus,
select:focus {
    --tw-ring-color: rgba(30, 58, 95, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}

/* Print styles */
@@media print {
    header, footer, .no-print {
        display: none;
    }
}
