* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eaeaea; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.game-container {
    width: 400px;
    height: 600px;
    background-color: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    background-color: #007bff; /* Blue background */
    color: white;
    padding: 10px;
    font-weight: bold;
}

.stat {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
}

.chat-box {
    flex-grow: 1;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
    height: 460px;
}

.message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 16px;
}

.input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #ffffff;
}

#user-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #007bff; /* Blue background for button */
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 10px;
    transition: blue 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.chat-container {
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f4f4f9;
  }
  
  .message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
  }
  
  .user-message {
    background-color: #d4f1f4;
    align-self:flex-end;
    text-align: left;
  }
  
  .bot-message {
    background-color: #e4fbe6;
    align-self: flex-start;
    text-align: left;
  }
  
  .choices {
    margin: 10px 0;
  }
  
  .choice-button {
    display: block;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
    text-align: left;
    width: 80%;
  }
  
  .choice-button:hover {
    background-color: #0056b3;
  }
  
  .choice-button.active {
    background-color: #28a745;
  }
  .highlight {
    background-color: #00ff37; /* Light yellow background */
    transition: background-color 0.5s;
}
.game-over {
    font-size: 1.5em;
    font-weight: bold;
}
.information p{
    padding: 2px;
    margin: 2px;
    word-wrap: break-word;
}
a{
  text-decoration: none;
  color: black;
}
@media (max-width: 600px) {
  .game-container {
      width: 100%;
      height: 90%;
      max-width: none;
      border-radius: 5px;
  }
  body{
    padding: 50px 10px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
  }

  .stats-bar {
      font-size: 10px;
      padding: 5px;
  }

  .stat {
      padding: 0 3px;
      font-size: 12px;
  }

  .message {
      font-size: 14px;
  }

  .input-area button {
      font-size: 14px;
  }

  .input-area #user-input {
      font-size: 14px;
  }

  .choices .choice-button {
      font-size: 14px;
      padding: 8px;
  }
  .information{
    padding-bottom: 30px;
  }
}

