table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }

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

  th {
    background-color: #4f46e5; /* azulzinho */
    color: white;
  }

  tr:nth-child(even) {
    background-color: #f3f4f6; /* cinza claro para listras */
  }

  tr:hover {
    background-color: #e0e7ff; /* destaque ao passar o mouse */
  }

  table caption {
    caption-side: top;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
  }