body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  .tabla-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
  }
  
  .nodos-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .nodos-table th, .nodos-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  
  .nodos-table th {
    background-color: #4CAF50;
    color: #fff;
  }
  
  .nodos-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .nodos-table tr:hover {
    background-color: #f1f1f1;
  }
/* Estilo para hacer la tabla responsive */
.tabla-container {
  overflow-x: auto;
}


.nodos-table th, .nodos-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

/* Estilo para ajustar columnas en dispositivos pequeños */
@media screen and (max-width: 600px) {
  .nodos-table th, .nodos-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
