/* Custom Scrollbar for Sidebar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

.sidebar-link {
    transition: all 0.3s ease;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: #1e293b; /* Darker blue/slate */
    color: #3b82f6; /* Blue-500 */
    border-right: 3px solid #3b82f6;
}
