/* css styles */

/* Text Selection/Highlight Color */
::selection {
  color: #f8f9fa;
  background: #00923f;
}

/* Output Code */
.cell-output {
  background-color: #bce2cc;
  border-radius: 4px;
  padding-top: 0.6em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  padding-bottom: 1px;
  line-height: 1.25;
  margin-top: 0; 
  margin-bottom: 10px;
}

/* Aktuell aktives Kapitel in der Sidebar */
.sidebar-item-text.sidebar-link.active {
  color: #00923f;
}

/* Übungsfragen am Ende */
details > summary {
  font-weight: bold;
  color: white; /* White text color */
  background-color: #00923f; /* Green background */
  font-size: 20px; /* Adjust the font size as needed */
  cursor: pointer;
  padding: 10px; /* Add some padding around the text */
  border-radius: 5px; /* Optional: Adds rounded corners to the box */
  display: inline-block; /* Ensures the background only covers the text area */
  width: 100%; /* Makes the summary box full width of its container */
  box-sizing: border-box; /* Ensures padding doesn't affect the overall width */
}



