/* Styles for the accordion headers */
.accordion-header {
  background: linear-gradient(297deg, rgba(45,122,121,1) 0%, rgba(86,195,191,1) 100%, rgba(86,195,191,1) 100%, rgba(255,255,255,1) 100%) !important;
  color: white;
  padding: 10px 10px 10px 20px;
  cursor: pointer;
  display: block;
}

/* Styles for the expanding content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding-left: 25px;
  padding-right: 25px;
  background-color: floralwhite;
}

.accordion-arrow {
display: inline-block;
    width: 7px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s;
    float: right;
    margin-top: 5px;
    margin-right: 10px;
}

/* Rotate the arrow when the header is active */
.accordion-header.active .accordion-arrow {
  transform: rotate(225deg);
  margin-top: 7px;
}


.accordion-item{
    margin-bottom: 5px;
}

/* Expand the content when the header is active */
.accordion-item input[type="checkbox"]:checked + .accordion-header {
  background-color: #e0e0e0;
}

.accordion-item input[type="checkbox"]:checked + .accordion-header + .accordion-content {
  max-height: 2000px; /* Adjust this value as needed */
}
