body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    color: #333;
  }
  
  .square {
    width: 75px;
    height: 75px;
    background-color: red;
    position: absolute;
    display: none;
    cursor: pointer;
  }
  
  .interface {
    margin-top: 20px;
  }
  
  .top-results {
    text-align: left;
    margin-bottom: 20px;
  }
  
  #topResults {
    list-style: none;
    padding: 0;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Estilos para o tema escuro */
.dark-theme {
    background-color: #333;
    color: #fff;

  }

  .dark-theme h1 {
    color: #fff;
    
  }
  
  .dark-theme label {
    color: #000000;
    
  }
  
  /* Estilos para o tema claro */
  .light-theme {
    background-color: #fff;
    color: #333;
  }