/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 03 2025 | 18:48:19 */
/* Estilos generales para todos los tabs */
sl-tab::part(base) {
  font-size: inherit !important;
  font-family: inherit !important;
  color: inherit !important;
  background-color: transparent !important;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: none;
}

/* Fondo uniforme para tabs inactivos */
sl-tab:not([active])::part(base) {
  background-color: #f0f0f0 !important;
  color: #444 !important;
}

/* Fondo uniforme para tab activo */
sl-tab[active]::part(base) {
  background-color: #d0e8ff !important;
  color: #002244 !important;
  font-weight: bold;
  box-shadow: inset 3px 0 0 #0077cc; /* borde izquierdo como indicador */
}

/* Panel activo: fondo blanco */
sl-tab-panel::part(base) {
  background-color: #fff !important;
  padding: 1rem;
  border-left: 2px solid #ccc;
}

/* Fondo del contenedor de navegación (barra de tabs vertical) */
sl-tab-group::part(nav) {
  background-color: #f7f7f7;
}
blockquote {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

