@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
/* Smooth transitions for interactive elements */
button, a, .transition-colors {
    transition: all 0.2s ease-in-out;
}
/* Layout fixes for navbar and sidebar */
main {
    margin-top: 64px; /* Height of navbar */
    margin-left: 240px; /* Width of sidebar */
    min-height: calc(100vh - 64px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Table row hover effect */
tbody tr:hover {
    background-color: #f9fafb;
}

/* Custom shadow for cards */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Fix for dropdown menus in navbar */
.dropdown-menu {
    display: none;
}
.dropdown-menu.show {
    display: block;
}

/* Better hover effects */
button:hover, a:hover {
    opacity: 0.9;
}

/* Responsive fixes */
@media (max-width: 768px) {
    main {
        margin-left: 0;
    }
}
