/* Custom styles for admin template */

/* Sidebar styling */
#sidebar {
    background-color: #1E3A5F;
    overflow: hidden;
}

#sidebar nav a {
    transition: all 0.3s ease;
}

#sidebarToggleIcon {
    transition: transform 0.3s ease;
}

/* Mobile sidebar */
@media (max-width: 1023px) {
    #sidebar {
        width: 256px !important;
    }
    
    #sidebar.mobile-open {
        transform: translateX(0) !important;
    }
}

/* Ensure proper spacing and colors */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Chart container adjustments */
canvas {
    max-height: 100%;
}

/* Smooth transitions
* {
    transition: background-color 0.2s ease, color 0.2s ease;
} */

