.sidebar {
  background: #343a40;
  min-height: 100vh;
  transition: 0.3s;
}
.sidebar {
  background: #343a40;
  min-height: 100vh;
}

.sidebar .nav-link {
  color: #ccc;
  padding: 10px;
  display: block;
  border-radius: 5px;
}

.sidebar .nav-link:hover {
  background: #495057;
  color: #fff;
}
#categoryForm {
  border: 1px solid black;
  height: auto;
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* Mobile view */
@media (max-width: 992px) {
  .sidebar {
    position: fixed;
    /* left: -250px; */
    top: 0;
    /* width: 250px; */
    height: 100%;
    z-index: 1000;
  }

  .sidebar.active {
    left: 0;
  }
}
.main {
  height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.badge {
  position: absolute;
  top: 10px;
  width: 100px;
  background-color: rgb(255, 106, 106);
  color: white;
  border-radius: 5px;
  display: inline-block;
}
