/* Estilos generales */
body {
  font-family: Arial, sans-serif;
/*  margin: 10px; */

  background-color: #f4f4f4;
}

/* Contenedor responsivo */
.table-container {
  overflow-x: auto;
}

/* Estilos de la tabla */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.responsive-table th,
.responsive-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* Colores alternos */
.responsive-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.responsive-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Encabezado */
.responsive-table thead {
  background-color: #557f37;
  color: white;
}

/* Responsividad para móviles */
@media (max-width: 600px) {
  .responsive-table {
    font-size: 14px;
  }
}
