/*
 * EmployeeTrack Admin Panel - Custom Styles
 * Fixes SVG sizing and provides utility classes for custom pages
 */

/* Fix unconstrained SVGs in Filament page headers */
.fi-page-header-heading svg,
.fi-header svg,
.fi-topbar svg,
.fi-sidebar svg,
[class*="fi-"] svg {
    max-width: 1.5rem;
    max-height: 1.5rem;
}

/* But allow SVGs in our custom content to be properly sized */
.fi-page .fi-page-content svg {
    max-width: none;
    max-height: none;
}

/* Page content SVGs with explicit style should be respected */
.fi-page .fi-page-content svg[style] {
    max-width: none;
    max-height: none;
}
