
.collapsible {
  background-color: #c7daef;
  color: black;
  cursor: pointer;
  padding: 10px;
  width: 30%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 10px;
  margin-bottom: 10px;
  position : relative;
  z-index: 1;
}
.activated, .collapsible:hover {
  background-color: #c7daef;
}
.collapsible:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.activated:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow-y: scroll; /* Allow scrolling if content exceeds the max-height */
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
  position: relative;
  z-index: 2;
  width: calc(100% - 36px);
  box-sizing: border-box;
}
.dynamic-content {
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Allow scrolling if content exceeds the max-height */
}

.dynamic-content .box-body {
  flex: 1;
  overflow: auto;
}