div.sidebar {
  margin: 0;
  padding: 0;
  width: 300px;
  left: -300px;
  position: fixed;
  min-height: 100vh;
  z-index: 10;
  background-color: rgb(249, 252, 255);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.sidebar a {
  width: 10%;
  margin: 0.75rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: lighter;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition-duration: 0.2s;
}
div.sidebar a:hover {
  color: gray;
}
div.sidebar a.inset {
  width: 80%;
  background-color: aliceblue;
  border-radius: 1rem;
  box-shadow: inset 0px 0px 7px 2px rgb(226, 237, 245);
}
div.sidebar a.newComp {
  background-color: rgb(240, 255, 241);
  box-shadow: inset 0px 0px 7px 2px rgb(226, 245, 229);
}
div.sidebar div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
div.sidebar form.setRefreshTime {
  width: 90%;
  margin: 0.5rem;
  padding: 0.5rem;
  border-top: 1px solid black;
}
div.sidebar form.setRefreshTime label {
  display: block;
  padding: 0.5rem;
  font-size: 1rem;
  color: black;
}
div.sidebar form.setRefreshTime input {
  width: 80%;
  margin: auto;
  padding: 1rem;
  color: black;
  background-color: aliceblue;
  box-shadow: inset 0px 0px 7px 2px rgb(226, 237, 245);
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: lighter;
}/*# sourceMappingURL=sidebar.css.map */