@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-weight: 800;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.main {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
}

#sidebar {
  max-width: 264px;
  min-width: 264px;
  transition: all 0.35s ease-in-out;
  background-color: #000;
  display: flex;
  flex-direction: column;
}

#sidebar.collapsed {
  margin-left: -264px;
}

.toggler-btn {
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.toggler-btn i {
  font-size: 1.75rem;
  color: #000;
  font-weight: 1000;
}

.navbar {
  padding: 1.15rem 1.5rem;
  border-bottom: 2px dashed #b3a8a8;
}

.sidebar-nav {
  flex: 1 1 auto;
}

.sidebar-logo {
  padding: 1.15rem 1.5rem;
  text-align: center;
}

.sidebar-logo a {
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
}

.sidebar-header {
  color: #fff;
  font-size: 0.75rem;
  padding: 1.5rem 1.5rem 0.375rem;
}

a.sidebar-link {
  padding: 0.625rem 1.625rem;
  color: #fff;
  position: relative;
  transition: all 0.35s;
  display: block;
  font-size: 1.25rem;
}

a.sidebar-link:hover {
  background-color: #f9f6f630;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
  border: solid;
  border-width: 0 0.075rem 0.075rem 0;
  content: "";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  transform: rotate(-135deg);
  transition: all 0.2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

.active {
  background: gray;
}

/* Screen size less than 768px */

@media (max-width: 768px) {
  .sidebar-toggle {
    margin-left: -264px;
  }

  #sidebar.collapsed {
    margin-left: 0;
  }
}
