/* Form styling */
#spiroForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

#spiroForm label {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.2rem;
}

#spiroForm input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  /* rounded corners */
  font-size: 1rem;
  width: 100%;
}

#spiroForm input:focus {
  outline: none;
  border-color: #0a66c2;
  box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.2);
}

#spiroBtn {
  background: #0a66c2;
  color: #fff;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  width: 100%;
  max-width: 200px;
}

#spiroBtn:hover,
#spiroBtn:focus {
  background: #084a94;
}

#spiroCanvas {
  width: 400px;
  height: 400px;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  display: block;
  margin: 1rem auto;
}
