* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #EEAECA;
  background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(61, 33, 219, 0.23) 100%);
}

.main-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

.example-questions p {
  font-weight: bold;
  margin-bottom: 10px;
}

.example-questions ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.example-questions li {
  background-color: #e0f2f1;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 15px;
  color: #00695c;
  cursor: default;
}

.chatbot-frame {
  border: 2px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.chatbot-id {
  font-size: 14px;
  color: #888;
}
