html, body {
  margin: 0;
  padding: 0;
  background: #f0f0f0;
  font-family: sans-serif;
  font-size: 18px;
  width: 100%;
  height: 100%;
}

body {
  display: block;
  padding-top: 7rem;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #ccc;
  padding: 0.6rem 1rem;
}

form {
  background: #fff;
  padding: 2rem 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}

h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

input[type="number"],
input[type="text"],
select {
  width: 100%;
  font-size: 1.5rem;
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-sizing: border-box;
  background: #fdfdfd;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 1.2rem 0;
  flex-wrap: nowrap;
}

.button-row button,
.button-row a {
  flex: 1 1 auto;
  font-size: 1.4rem;
  padding: 1.2rem;
  text-align: center;
  border-radius: 0.5rem;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
}

.neutral {
  background: #e0e0e0;
  color: black;
}

.cancel {
  background: #999;
  color: white;
}
