body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
}

.container {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.ball {
  margin: 20px;
  transition: transform 0.5s ease-in-out;
}

img {
  width: 150px;
  height: 150px;
}

/* Stylish input field */
input {
  width: 90%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #007bff;
  border-radius: 20px;
  outline: none;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

input:focus {
  border-color: #0056b3;
  box-shadow: 0 0 8px rgba(0, 91, 187, 0.5);
}

/* Button styling */
button {
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
}

/* Response Formatting */
#response {
  margin-top: 20px;
  text-align: center;
}

.question {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.subtitle {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}

.answer {
  font-size: 1.3rem;
  font-weight: bold;
  color: #007bff;
  margin-top: 5px;
}

.warning {
  font-size: 1.2rem;
  color: red;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}
