tr:hover td {
    background-color: #feffb7;
  }
  table {
    width: 98%;
    margin-left: 10px;
    font-size: 10px;
    font-family: Arial, Helvetica;
    border: 1px solid #ccc;
    border-collapse: collapse;
  }
  table th {
    background-color: #2f4f4f;
    color: white;
    font-weight: bold;
  }
  table th,
  table td {
    font-size :12px;
    padding: 5px;
    border: 1px solid #ccc;
  }

  table tr:nth-child(even) {
    background-color: white; /*Primeira linha*/
    /* background-color: #5F9EA0; Primeira linha */
  }
  table tr:nth-child(odd) {
    background-color: #dcdcdc; /*Segunda linha*/
  }

  td {
    padding: 5px;
    text-align: left;
    font-size: 11px;
  }

  th {
    padding: 10px;
    text-align: left;
    position: sticky;
    top: -15px;
    z-index: 2;
    font-size: 11px;
  }