.sidebar-accordion {
  width: 100%;
  display: block;
}
.sidebar-accordion-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  width: 100%;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
  background: none;
  border: none;
}
.sidebar-accordion-toggle:checked ~ .sidebar-accordion-content {
  max-height: 500px;
  padding-bottom: 10px;
  transition: max-height 0.3s ease;
}
.sidebar-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
}
.sidebar-accordion-content a {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.sidebar-accordion-content a:last-child {
  border-bottom: none;
}
.sidebar-accordion-label:hover, .sidebar-accordion-content a:hover {
  background: #f5f5f5;
}
