form {
  margin: 0 auto;
  text-align: center;
  color:#4CAF50;
}
table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    text-align: left;
    padding: 8px;
  }
  
  th {
    background-color: #4CAF50;
    color: white;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tr:nth-child(odd) {
    background-color: #fff;
  }
  
  tr:hover {
    background-color: #ddd;
  }
  nav {
    background-color: black;
  }
  
  .menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    display: inline-block;
  }
  
  .menu li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }
  
  .menu li a:hover {
    background-color: white;
    color: black;
  }

  .banner {
    width: 100%;
    height: 100px;
    background-color: #333;
    text-align: center;
  }
  
  .banner img {
    max-width: 200px;
    max-height: 20px;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
  }
  
  .logo img {
    width: 20px;
    height: 20px;
  }

.custom-header-bg-color {
  background-color: #000; /* Substitua pela cor desejada */
}

/* Classe para alterar a cor do texto no cabeçalho da tabela */
.custom-header-text-color {
  color: rgb(6, 6, 6); /* Substitua pela cor desejada */
}
  