/* Estilo base */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  margin: 0;
  padding: 20px;
}

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

/* Tabela */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
  border: 1px solid #000;
  padding: 12px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

/* Cabeçalho vermelho */
th {
  background-color: #cc0000 !important;
  color: white !important;
}

/* Linhas alternadas */
tr:nth-child(even) {
  background-color: #e9f1f7;
}

/* Links */
a {
  color: #cc0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsividade para celular */
@media screen and (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
  }

  th, td {
    font-size: 14px;
    white-space: nowrap;
  }
}
