body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
  width: 90%;
  max-width: 700px;
}

h1 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 2rem;
  margin-bottom: 1rem;
}

input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
}

button {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 1rem;
}

button:hover {
  background-color: #0056b3;
}

#mirrorResponse {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  white-space: pre-wrap;
  color: #333;
}
