/* Collapsible sections using CSS only */

.collapsible {
  background-color: #f1f1f1;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 5px;
  border-radius: 4px;
  position: relative;
}

.collapsible:hover {
  background-color: #ddd;
}

.collapsible:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 18px;
}

.collapsible.active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: white;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 0;
}

.content.show {
  max-height: 2000px;
  padding: 18px;
} 
