/* GLOBAL SETTINGS */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: bold;
}

.modern-sidebar {
    transition: width 0.3s ease;
    width: 250px; /* Expanded width */
}
.modern-sidebar.collapsed {
    width: 70px; /* Collapsed width */
}
.modern-sidebar .sidebar-text {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modern-sidebar.collapsed .sidebar-text {
    opacity: 0;
    visibility: hidden;
}
.sidebar-logo {
    width: 40px;
    height: 40px;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.logo-img {
    max-height: 180px;
}