.admin-container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 200px;
  max-width: 200px;
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  height: 100vh;
}

.sidebar h3 {
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
}

.sidebar ul li a.active {
  color: red;
  text-decoration: none;
}

.content {
  flex-grow: 1;
  padding: 20px;
  background-color: #ecf0f1;
}

.report-view{
  max-height: 100vh;
  overflow: scroll;
}

.pagination span {
  margin-right: 0.5em;
}

#quill-readonly {
  overflow-y: auto;
  resize: vertical;
}

.ml-1 {
  margin-left: 1em;
}
.search {
  display: flex;
}