body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.25rem;
  width: 90%;
  max-width: 1200px;
}

#svgContainer {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 2rem;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.input-fields-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 70%;
}

.orange-input-fields,
.blue-input-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group {
  display: flex;
  align-items: center;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  margin-right: 0.5rem;
  width: 20px;
}

input[type="number"] {
  width: 60px;
  padding: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 25%;
}

button {
  background-color: #4b6b8b;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.25px;
  outline: none;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

button:focus {
  box-shadow: 0 0 0 4px rgba(98, 0, 238, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .input-fields-container,
  .button-container {
    width: 100%;
  }

  .button-container {
    margin-top: 1rem;
  }
}