.accordion-item {
  min-height: 40px;
  color: #b5c9d2;
  padding: 10px;
}

.accordion-title {
  cursor: pointer;
  font-weight: bold;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

input:checked ~ .accordion-content {
  max-height: none;
}

/* Hide the checkbox */
input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
}

/* Create the unchecked state (a right-pointing triangle) */
input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent transparent #0180a3;
}

/* Create the checked state (a down-pointing triangle) */
input[type="checkbox"]:checked + label:before {
  border-color: #0180a3 transparent transparent transparent;
}

