/* Styling for the collapsible buttons */
.collapsible {
  background-color: #eee;
  color: #333;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
}

/* Styling for the content sections */
.content {
  display: none;
  padding: 10px;
  border-top: 1px #eee;
}

/* Active state for the collapsible buttons */
.active {
  background-color: #eee;
}
