/* === Global Styles === */
body {
  font-family: 'Comic Sans MS', sans-serif;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 50px 20px; /* smaller side padding for mobile */
  padding: 50px;
}
/* === Main Container === */
.container {
  max-width: 600px;
  margin: auto;
  background: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00ff88;
}
/* === Title === */
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
/* === Input Field === */
input {
  padding: 12px;
  width: 70%;
  border-radius: 8px;
  border: none;
  margin-right: 10px;
  font-size: 16px;
}
/* === Get Advice Button === */
button {
  padding: 12px 20px;
  background-color: #00ff88;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

button:hover {
  background-color: #00cc70;
}
/* === Response Area === */
#response {
margin-top: 30px;
  font-size: 1.3em;
  line-height: 1.5;
  white-space: pre-wrap; /* Keeps line breaks from the AI */
}

/* === Style Selector (if used) === */
select {
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  background-color: #444;
  color: #fff;
  border: none;
}

/* === Responsive Styles for Phones === */
@media (max-width: 600px) {
  input {
    width: 100%;
    margin: 10px 0;
  }

  button {
    width: 100%;
  }

  h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 20px;
    box-shadow: 0 0 10px #00ff88;
  }
}