/* Estilos para tablas técnicas - estilo W3Schools */
.reference-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.reference-table th,
.reference-table td {
  padding: 12px 15px;
  text-align: left;
  /* 🔴 Líneas visibles entre celdas */
  border: 1px solid #ddd;
}

.reference-table th {
  background-color: #f1f1f1;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
}

.reference-table tr:nth-child(even) {
  background-color: #fafafa;
}

.reference-table tr:hover {
  background-color: #f5f5f5;
}

.reference-table code {
  background: #f8f8f8;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'Source Code Pro', monospace;
}