body {
  font-family: Arial, sans-serif;
  background-color: #fff1f0; /* Light pink background */
  color: #222; /* Black text color */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.chat-container {
  width: 80%;
  max-width: 500px;
  background-color: #ff80ab; /* Pink chat background */
  border-radius: 15px;
  padding: 20px;
}

.chat-messages {
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.user-message {
  background-color: #222; /* Black user message background */
  color: #fff; /* White text color */
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 10px;
  align-self: flex-end;
}

.fortune-message {
  background-color: #fff; /* White fortune message background */
  color: #222; /* Black text color */
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.intro-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-container img {
  width: 50%;
  min-width: 300px;
}

#input-message {
  width: 70%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #fff; /* White border */
}

#send-btn {
  padding: 8px 16px;
  border-radius: 5px;
  background-color: #222; /* Black send button */
  color: #fff;
  border: none;
  cursor: pointer;
}


#lucky-btn {
  margin: 10px;
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #222; /* Black send button */
  color: #fff;
  border: none;
  cursor: pointer;
}

#loader {
    /* display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%); */
    font-size: 25px; /* Size of the spinner */
    color: white; /* Spinner color */
    text-align: center;
}
</style>