/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 03 2025 | 19:54:15 */
sl-details::part(summary) {
  font-size: 18px;
  font-weight: 600;
  color: #002244;
  background-color: #f2f2f2;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  transition: background 0.2s;
}
sl-details::part(summary):hover {
  background-color: #e6e6e6;
}

sl-details::part(content) {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  padding: 1rem;
  background-color: #fff;
  border-left: 4px solid #0077cc;
}