.main-section {
  display: flex;
  align-items: flex-start;
}

.main-section .sidebar a {
  display: block;
  margin-bottom: 1rem;
}

.main-section .sidebar {
  padding-top: 1.5rem;
  position: sticky;
  top: 7rem;
  width: 15%;
  flex-shrink: 0;
}

.main-section .sidebar .title {
  font-size: 1.2rem !important;
  margin-bottom: 1rem;
}

.main-section .content {
  padding: 1.5rem 1rem;
}

.main-section .content {
  width: 50%;
}

.go-to {
  display: none;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  position: fixed;
  border: none;
  background-color: #1f1f1f;
  color: white;
  width: max-content;
  word-break: keep-all;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 0.5rem;
}

#close-sidebar-button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
  background-color: transparent;
  border: none;
}

#close-sidebar-button img {
  width: 2rem;
  height: 2rem;
}

.main-section .content table {
  margin-bottom: 1.5rem;
}

.main-section .content * {
  font-size: 0.9rem !important;
}

@media only screen and (max-width: 1200px) {
  .main-section .sidebar {
    padding: 1rem 2rem;
    width: 25%;
  }

  .main-section .content {
    width: 65%;
  }
}

@media only screen and (max-width: 768px) {
  .go-to {
    display: block;
  }

  .main-section .sidebar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    width: 100%;
    padding: 2rem;
    left: 0;
    z-index: 40;
    display: none;
  }

  .main-section .content {
    width: 100%;
  }

  #close-sidebar-button {
    display: block;
  }
}

@media only screen and (max-width: 540px) {
}
