p.caption {
  color: #777;
  margin-top: 10px;
}
p code {
  white-space: inherit;
}
pre {
  word-break: normal;
  word-wrap: normal;
}
pre code {
  white-space: inherit;
}

.blackbox {
  padding: 1em;
  background: #D9F2D0;
  color: black;
  border: 2px solid black;
  border-radius: 10px;
}

.mainbox {
  padding: 1em;
  background: #ffd43b;
  color: black;
  border: 2px solid black;
  border-radius: 10px;
}

.devbox {
  padding: 1em;
  background: #d0bfff;
  color: black;
  border: 2px solid black;
  border-radius: 10px;
}

.featurebox {
  padding: 1em;
  background: ##cfebb6;
  color: black;
  border: 2px solid black;
  border-radius: 10px;
}

/* Style for the SDD responsability and support boxes */
/* Updated CSS for collapsible elements */
.collapsible {
  padding: 2px 4px;
  background: black; /* Black background color */
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px; /* Adjust the value to control the amount of rounding */
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Adjust the values as needed */
  background-image: url('img/bash_logo.png'); /* Replace 'path_to_your_image' with the image URL */
  background-repeat: no-repeat;
  background-position: right 5px center; /* Move the image to the right side */
  padding-left: 25px; /* Adjust based on image width to make text visible */
  background-size: 22px; /* Set the size of the background image */
}

.collapsible::before {
  content: "+";
  display: inline-block;
  margin-right: 5px;
}

.collapsible.active::before {
  content: "-";
}

.collapscontent {
  display: none;
  padding: 2px 4px;
  background:  #333333;
  color: white;
  border-radius: 10px; /* Adjust the value to control the amount of rounding */
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Adjust the values as needed */
}

/* end */
