#sidebarIcon {
  display: none;
}
#sidebar {
  position: sticky;
  top: 0;
  left: 0;
  font-size: large;
  background-color: #f8f9fa;
  height: 99vh;
  max-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#sidebar a {
  margin: 4px auto;
  background-color: rgb(247, 246, 246);
  width: 100%;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(212, 212, 212);
  transition: all 0.3s;
}
#sidebar a:hover {
  color: #4285f4;
  background-color: #eaf3ff;
}
@media (max-width: 800px) {
  #sidebarIcon {
    display: block;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
  }
  #sidebarIcon span {
    display: block;
    border-radius: 10px;
    width: 25px;
    height: 3px;
    margin: 5px 5px;
    background-color: #4285f4;
  }
  #sidebar.show {
    display: flex;
    transition: left 0.6s ease;
    border: rgba(0, 0, 0, 0.9);
  }
  #sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    min-width: 30vw;
    width: 50vw;
    z-index: 100;
  }
}
