/* Custom CSS for Brickly Admin - Tailwind CSS + DaisyUI via CDN */

/* Additional custom styles can be added here if needed */
/* Most styling is handled by Tailwind CSS and DaisyUI */

/* Smooth transitions for hover effects */
.table tr.hover:hover {
    transition: background-color 0.2s ease;
}

/* Custom scrollbar for tables */
.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: transparent;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* HTMX Loading Indicator */
.htmx-indicator {
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease-in;
}

.htmx-request .htmx-indicator,
.htmx-indicator.htmx-request {
    opacity: 1;
    pointer-events: auto;
}
