  /*body {
      font-family: 'Georgia', serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }*/

    .tabla-container {
      background-color: white;
      padding: 40px;
      border: 1px solid #ccc;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      max-width: 95%;
      overflow-x: auto;
    }

    h1 {
      text-align: center;
      font-weight: normal;
      margin-bottom: 30px;
      color: #333;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      text-align: center;
    }

    th, td {
      border: 1px solid #aaa;
      padding: 12px;
      font-size: 16px;
    }

    th {
      background-color: #e5e5e5;
      font-weight: bold;
    }

    td:first-child, th:first-child {
      font-weight: bold;
      background-color: #f5f5f5;
    }