/* Estilos para el contenido markdown en #debug */

#debug {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Títulos principales */
#debug h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: #1b0d14;
  border-bottom: 3px solid #e74c3c;
  padding-bottom: 0.3em;
}

/* Subtítulos */
#debug h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: #555;
}

#debug h3 {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #666;
}

/* Párrafos */
#debug p {
  margin-bottom: 1em;
  font-size: 1.1em;
  text-align: justify;
}

/* Texto en negrita */
#debug strong {
  font-weight: 700;
  color: #1b0d14;
}

/* Texto en cursiva */
#debug em {
  font-style: italic;
  color: #555;
}

/* Listas */
#debug ul,
#debug ol {
  margin-bottom: 1em;
  padding-left: 2em;
}

#debug li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

/* Enlaces */
#debug a {
  color: #e74c3c;
  text-decoration: none;
  border-bottom: 1px solid #e74c3c;
  transition: color 0.3s ease;
}

#debug a:hover {
  color: #c0392b;
  border-bottom-color: #c0392b;
}

/* Código inline */
#debug code {
  background-color: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #e74c3c;
}

/* Bloques de código */
#debug pre {
  background-color: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  margin-bottom: 1em;
}

#debug pre code {
  background-color: transparent;
  padding: 0;
  color: #333;
}

/* Citas */
#debug blockquote {
  border-left: 4px solid #e74c3c;
  padding-left: 1em;
  margin-left: 0;
  font-style: italic;
  color: #666;
  background-color: #f9f9f9;
  padding: 10px 20px;
  margin-bottom: 1em;
}

/* Líneas horizontales */
#debug hr {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 2em 0;
}

/* Responsive */
@media (max-width: 768px) {
  #debug {
    padding: 15px;
  }
  
  #debug h1 {
    font-size: 2em;
  }
  
  #debug h2 {
    font-size: 1.5em;
  }
  
  #debug p {
    font-size: 1em;
  }
}
