td, h1 {
    text-align: center;
}

h1, th span {
  color: #66f859
}

.color-main {
  color: #66f859;
}

.btn-share {
    position: fixed;
    right: 30px;
    top: 0;
}
th div {
    display: flex; align-items: center
}

table input {
    width: 100%
}
table button {
    background: none;
    color: #fff;
    border: none;
}

th label {
  display: none;
  color: #66f859;
}
 

/* ===== TABELA → CARDS NO CELULAR ===== */

@media (max-width: 768px) {
    #tabelaConcursos thead tr:first-child {
      display: none;
    }

    thead {
      width: 100%;
      display: block;
    }

    tr th {
      display: block;
    }
    th label {
      display: block;
    }
    tbody tr {
      position: relative;
    }

    tbody tr::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #3a3a3a url(https://ninjaconcursos.com.br/marca-dagua.png) !important;
      opacity: 0.1;
      z-index: 1;
      background-repeat: no-repeat !important;
      background-position: center !important;
  }
  
    /* Cada elemento vira bloco */
    #tabelaConcursos, 
    #tabelaConcursos tbody, 
    #tabelaConcursos tr, 
    #tabelaConcursos td {
      display: block;
      width: 100%;
    }
  
    /* Cada linha vira um card */
    #tabelaConcursos tr {
      margin-bottom: 1rem;
      padding: 1rem;
      background: #3a3a3a !important;
      border-radius: 12px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    }
  
    /* Celulas ficam empilhadas */
    #tabelaConcursos td {
      background: none;
      padding: 0.5rem 0;
      text-align: left;
      border: none !important;
    }

    /* Label de cada coluna */
    #tabelaConcursos td::before {
      content: attr(data-label);
      font-weight: bold;
      color: #9ecaff;
      display: block;
      margin-bottom: 2px;
      font-size: 0.9rem;
    }
  }
  