/* Reset default browser styles */
body, h1, h2, p, ul, li, form {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #007BFF;
}

/* Main content container */
main {
  max-width: 800px;
  margin: 20px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* Form styles */
.form-container {
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #007BFF;
}

.form-row {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

select[multiple] {
  height: auto;
}

button[type="submit"] {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Style the form fields differently */
input[type="date"],
input[type="text"][id^="height"],
input[type="text"][id^="weight"] {
  border: 1px solid #007BFF;
}

/* More specific styling for select elements */
select[multiple] {
  height: 120px;
}

/* Radio buttons and labels alignment */
.radio-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* Adjusting radio button styles for better alignment */
input[type="radio"] {
  margin-right: 5px;
}

/* Footer styles (if applicable) */
footer {
  text-align: center;
  padding: 20px;
  background-color: #007BFF;
  color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
  /* Adjust styles for smaller screens here */
  main {
    padding: 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }
}

