/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #20232a;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .game-container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
    background-color: #282c34;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  h1 {
    font-size: 2em;
    color: #61dafb;
  }
  
  #score {
    font-size: 1.2em;
    color: #61dafb;
    margin-bottom: 20px;
  }
  
  .hint-container p {
    font-size: 1.1em;
  }
  
  input {
    padding: 10px;
    margin-top: 10px;
    font-size: 1em;
    width: 80%;
    border: none;
    border-radius: 5px;
  }
  
  button {
    
    padding: 10px 20px;
    background-color: #61dafb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin:auto;
    margin-top: 10px;
  }
  
  button:hover {
    background-color: #4b9cc8;
  }
  
  #suggestions {
    display: none;
    position: absolute;
    width: 80%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #282c34;
    border: 1px solid #61dafb;
    border-radius: 5px;
    margin-top: 5px;
    z-index: 10;
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%);
    width:250px;
  }
  
  .suggestion-item {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    color: white;
  }
  
  .suggestion-item img {
    margin-right: 10px;
  }
  
  .suggestion-item:hover {
    background-color: #61dafb;
  }
  
  /* Scrollbar styling */
  #suggestions::-webkit-scrollbar {
    width: 8px;
  }
  
  #suggestions::-webkit-scrollbar-track {
    background: #20232a;
    border-radius: 5px;
  }
  
  #suggestions::-webkit-scrollbar-thumb {
    background: #61dafb;
    border-radius: 5px;
  }
  
  #suggestions::-webkit-scrollbar-thumb:hover {
    background: #4b9cc8;
  }
  
  #next-btn {
    background-color: #4b9cc8;
    
    margin:auto;
    margin-top: 15px;
  }
  
  #next-btn:hover {
    background-color: #2e6b8c;
  }
  

  #champ-image {
    margin-top: 20px;
    width: 150px;
    height: 150px;
    border: 1px solid #61dafb;
    border-radius: 10px;
    margin:auto;
  }