body {
      margin: 0;
      padding: 0;
      background-image: url('../imagen/fondo_pokemon.png'); 
      background-size: cover;            
      background-position: center;       
      background-repeat: no-repeat;      
      background-attachment: fixed;      
      height: 100vh;
      font-family: Arial, sans-serif;
      color: white;
      text-align: center;
    }
    #pokemon-img-container {
      width: 200px;
      height: 200px;
      margin: 20px auto;
      background-color: black;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #pokemon-img {
      max-width: 100%;
      max-height: 100%;
      display: none;
    }

    #attribute-boxes {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      align-items: center;
    }

    .attempt-row {
      display: grid;
      grid-template-columns: repeat(2, 150px);
      gap: 10px;
      justify-content: center;
      align-items: stretch;
    }

    .attribute {
      width: 150px;
      padding: 5px;
      border-radius: 6px;
      font-weight: bold;
      color: white;
      text-align: center;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: pre-line;
    }

    .attribute.name {
      color: black !important;
    }

    .green {
      background-color: green;
    }

    .yellow {
      background-color: goldenrod;
    }

    .red {
      background-color: crimson;
    }

    #suggestions {
      margin-top: 10px;
      max-height: 150px;
      overflow-y: auto;
      border: 1px solid #ccc;
      display: inline-block;
      width: 200px;
      background-color: rgb(6, 6, 6);
      text-align: left;
    }

    #suggestions div {
      padding: 5px;
      cursor: pointer;
    }

    #suggestions div:hover {
      background-color: #f0f0f0;
    }

    #secret-info-buttons {
      margin-top: 20px;
      margin-bottom: 10px;
    }

    button:not(#submit-btn):not(#btn-cry) {
      padding: 15px 30px;
      font-size: 1.2em;
      border: none;
      border-radius: 10px;
      background-color: #ffcb05;
      color: #2d2d2d;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    button:not(#submit-btn):not(#btn-cry):hover {
      background-color: #ffdb4d;
      transform: scale(1.05);
    }

    #submit-btn {
      background-color: green;
      color: white;
      border-radius: 10px;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s, transform 0.2s;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    #submit-btn:hover {
      background-color: #228B22;
      transform: scale(1.05);
    }

    #btn-cry {
      display: block;
      margin: 20px auto;
      font-size: 18px;
      padding: 12px 20px;
      background-color: #1976d2;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }