    body {
      font-family: Arial, sans-serif;
      background: #0b1020;
      color: #fff;
      margin: 20px;
      padding-bottom: 50px; /* Ajuste conforme a altura do rodapé */
    }
    .login-container {
      display: flex;
      flex-direction: column;  
      justify-content: center; 
      align-items: center;     
      height: 100vh;           
    }
    h1 {
      text-align: center;
    }
    .controls {
      text-align: center;
      margin-bottom: 20px;
    }
    .controls input, .controls button {
      margin: 5px;
      padding: 8px 12px;
      border-radius: 6px;
      border: none;
      outline: none;
    }
    .controls button {
      cursor: pointer;
      background: #2c3e50;
      color: #fff;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
      background: #121939;
      border-radius: 8px;
      overflow: hidden;
    }
    th, td {
      border: 1px solid #2c3e50;
      padding: 10px;
      text-align: center;
    }
    th {
      background: #1c2541;
    }
    tr.selected {
      background: #2a3f5f;
    }
    .status {
      padding: 5px 10px;
      border-radius: 12px;
      font-weight: bold;
    }
    .pendente {
      background: #f1c40f;
      color: #000;
    }
    .certo {
      background: #2ecc71;
      color: #fff;
    }
    .errado {
      background: #e74c3c;
      color: #fff;
    }



.tabela-scroll {
    width: 100%;
    overflow-x: auto;     /* a tabela rola para os lados */
    overflow-y: hidden;
    padding-bottom: 8px;  /* evita cortar borda/sombra */
}

.tabela-scroll table {
    min-width: 700px;  /* garante scroll horizontal */
}






h1 {
    text-align: center;
}


/* Remove aparência de link, mas NÃO interfere no botão */
a {
    text-decoration: none;
    color: inherit;
}

/* ------------------------
   Figurinhas das questões
------------------------- */

.aluno-galeria {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.aluno-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.foto {
    width: 150px;
    height: 150px;
    background: #2c3e50;
    border-radius: 50%;
    border: 3px solid #1c2541;
    background-size: cover;
    background-position: center;
}

/* ------------------------
   BOTÕES
------------------------- */

/* Estiliza botões mesmo dentro de <a> */
a button {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

/* Botões das questões */
.btn-questao {
    background: #2c3e50;
    color: #fff;
}

.btn-questao:hover {
    background: #34495e;
}

/* Botão de logout */
.btn-logout {
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;      /* TAMANHO */
    border-radius: 6px;      /* FORMATO */
    cursor: pointer;
    border: none;
    font-size: 16px;
    display: inline-block;   /* garante alinhamento */
}


.btn-logout:hover {
    background: #e74c3c;
}

/* Hover especial do botão alterar senha */
.btn-alt-senha:hover {
    background-color: #f1c40f;
    color: black;
}


.logout-area {
    display: flex;
    justify-content: space-between; /* Cada um pra um lado */
    align-items: center;
    width: 100%;
    
}


    .questao-container {
      max-width: 600px;
      margin: 40px auto;
      background: #121939;
      padding: 20px;
      border-radius: 8px;
    }
    
    .questao-container p {
      margin-bottom: 20px;
      line-height: 1.6;
    }
    
    .alternativas {
      display: flex;
      flex-direction: column;  /* garante coluna */
      gap: 15px;               /* espaço entre alternativas */
    }
    
    .alternativas label {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    
    .alternativas input[type="radio"] {
      transform: scale(1.2);
    }
    
    .botao-centro {
      display: flex;
      justify-content: center; /* centraliza o botão */
      margin-top: 20px;
    }
    
    .botao-centro button {
      cursor: pointer;
      background: #2c3e50;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
    }

    button {
      cursor: pointer;
      background: #2c3e50;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
    }

    .rodape {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    border-top: 1px solid #000000;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: hsl(0, 0%, 88%);
}
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Tamanho padrão da logo */
.login-logo {
    width: auto;   /* ajuste como preferir */
    height: auto;
}












/* Tela pequena (smartphones até 450px) */
@media (max-width: 450px) {
    .login-logo {
        width: 300px;   /* tamanho reduzido */
    }
    .aluno-galeria {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .aluno-item {
        width: 100%;
    }

    .foto {
        width: 160px;
        height: 160px;
        border-radius: 50%;     /* CÍRCULO */
        border-width: 3px;
    }

    .btn-questao {
        width: 100%;
        max-width: 250px;
        font-size: 18px;
        padding: 12px;
    }

    /* parte do painel do professor */
    @media (max-width: 450px) {
    .controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 20px auto 20px auto; /* centraliza horizontalmente */
    align-items: center;       /* centraliza os itens dentro do flex */
}

    .controls input,
    .controls button {
        width: 70%;
        font-size: 18px;
        padding: 12px;
    }
}


    

}



