/* Adaya Pink background */
body {
  background-color: #ff87d4;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2a0033; /* deep plum to contrast the pink */
}

/* Header styling */
header {
  text-align: center;
  padding: 40px 20px 20px;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2a0033;
}

.subtitle {
  font-size: 1.1rem;
  color: #4a004f;
  margin-top: 8px;
}

/* Button panel */
.button-panel {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}

button {
  background-color: #ffffffaa;
  border: 2px solid #2a0033;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  color: #2a0033;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #ffd4f0;
  transform: scale(1.07);
}

/* Output area */
.output-box {
  background-color: #ffffffdd;
  border-radius: 12px;
  padding: 20px;
  width: 85%;
  margin: 0 auto;
  min-height: 200px;
  color: #250028;
  font-size: 0.95rem;
  border: 2px solid #2a0033;
  overflow-x: auto;
  white-space: pre-wrap;
}
