/* Table.css */

.table-container {
    width: 100%;
    height: 300px; /* Ajusta esta altura según tus necesidades */
    overflow-y: auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Asegura que el ancho de las columnas sea uniforme */
  }
  
  thead {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  tbody {
    display: block;
    max-height: 250px; /* Ajusta esta altura según tus necesidades */
    overflow-y: auto;
  }
  
  thead, tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed; /* Asegura que el ancho de las columnas sea uniforme */
  }