body {
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 420px;
  margin: 60px auto;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  background: #0070f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:disabled {
  background: #999;
  cursor: not-allowed;
}

#statusBox,
#parsedBox {
  margin-top: 20px;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
  min-height: 40px;
}


