*{
  margin: 0;
  padding: 0;
  font-family: "Copperplate", fantasy;
  font-weight: normal;
}

/*topo do site*/

body {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topo {
    width: 100%;
    padding: 10px;
    background-color: #012e40;  /* Cor de fundo escura */
    color: white;            /* Texto branco */
    z-index: 10;             /* Fica acima de outros elementos */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.menu-superior ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 325px;
}

.menu-superior a {
  color: white;
  text-decoration: none;
  font-size: 25px;
}

.menu-superior a:hover {
  text-decoration: underline;
  color: #6eb9ff;
}

.logoui {
  width: 230px;
  height: auto;
  margin-left: 290px;
 
}

/*div vermelha*/

.centro {
  width: 68%;             /* ou 600px, se preferir tamanho fixo */
  height: 100%;          /* 100% da altura da tela */
  margin: 0 auto;         /* centraliza horizontalmente */
  background-color: #f0f0f0;  /* só pra ver a div no teste */
  padding: 20px;
  box-sizing: border-box;
}

.centro .vermelho{
  width: 100%;             /* ou 600px, se preferir tamanho fixo */
  height: 40vh;          /* 100% da altura da tela */
  margin: 0 auto;         /* centraliza horizontalmente */
  background-color: #861a03;  /* só pra ver a div no teste */
  padding: 20px;
  box-sizing: border-box;
}

.centro .vermelho .cdds{
    position: absolute;
    top: 230px;
    left: 590px;
}

.centro .vermelho .icones{
    position: absolute;
    top: 270px;
    left: 605px;
    height: 60px;
}

.centro .vermelho .super{
  margin-left: 60px;
  height: 250px;
}

h1.texto{
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  color: white;
  font-size: 45px;
}

h3.cdds{
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  color: white;
  font-size: 17px;
}

.container {
      width: 100%;
      margin: 60px auto;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .header {
      background-color: darkred;
      color: white;
      padding: 20px;
      font-size: 24px;
      text-align: center;
      margin-bottom: 1px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
    }
    th, td {
      padding: 12px;
      text-align: center;
      border-bottom: 1px solid #ddd;
    }
    th {
      background-color: #003366 ;
    }
    tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    .jornada {
      background-color: #003366;
      color: white;
      font-weight: bold;
    }
    .data {
      color: #555;
    }
    .hora {
      color: #555;
    }
    .resultado {
      color: #012e40;
    }
    .barra{
      color: white;
    }

    tbody tr:not(.jornada , .top1):hover {
  background-color: #f1f1f1;
}
    
    .detalhes {
        display: none;
        background-color: #f0f0f0;
    }
    .jogo {
        cursor: pointer;
        font-size: 18px;
    }

    .jogo:hover {
    background-color: #e0e0e0; /* Destaca a linha ao passar o mouse */
    }

    .detalhes ul {
      list-style-type: none;
    }
    .detalhes ul li{
      font-size: 15px;
      color: #666666;
      font-style:italic;
    }
    .falta{
      color: red;
    }
