@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container-fluid {
  display: flex;
  flex: 1;
  padding: 0;
}

.sidebar {
  width: 270px;
  background-color: #f8f9fa;
  padding: 10px;
  border-right: 1px solid #ddd;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.content {
  flex: 1;
  padding: 20px;
}

.search-box {
  margin-bottom: 20px;
}

.nav-link {
  cursor: pointer;
}

.nav-link.active {
  font-weight: bold;
  color: #092354;
}
a {
  color: #000 !important;
}

h1 {
  font-size: 30px;
}
h2 {
  font-size: 25px;
  font-weight: 600;
}
h4 {
  font-size: 20px;
}
section img {
  width: 100%;
  height: auto;
  border: 1px solid;
  border-radius: 5px;
}
.form-control:focus {
  box-shadow: 0 0 0 0;
}
.bg-primary {
  background-color: #092354 !important;
}
.lh-15 {
  line-height: 15px;
}
ul li, ol li {
  padding-top: 10px;
}
@media (max-width: 768px) {
  .sidebar {
      position: relative;
      height: auto;
      border-right: none;
      box-shadow: none;
  }

  .container-fluid {
      flex-direction: column;
  }

  .content {
      padding-top: 20px;
  }

  .sidebar {
      display: none;
  }

  .sidebar-mobile {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      background-color: #f8f9fa;
      width: 250px;
      height: 100%;
      overflow-y: auto;
      box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
  }

  .sidebar-toggle {
      display: block;
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1001;
  }

  .nav-item {
      padding: 0 15px;
  }

  .content {
      margin-left: 0;
      padding: 15px;
  }
  .fs-m-20 {
    font-size: 20px;
  }
}