/* General Page Styling */
body {
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Chart Container */
#container1 {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

/* Form Styling */
form {
  margin: 20px 0 20px 20px; /* top, right, bottom, left */
  text-align: left;
  max-width: 400px;
}

/* Input Fields */
input[type="text"] {
  border: none;
  padding: 3px 30px;
  border-bottom: 2px solid #000;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}

input[type="text"]:focus {
  border: 3px solid #555;
  outline: none;
}

/* Submit Button */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background-color: #4CAF50;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 8px 30px;
  font-size: 20px;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

/* Navigation Buttons */
.button {
  background-color: white;
  color: black;
  border: 3px solid #4CAF50;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 20px;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.button:hover {
  background-color: #4CAF50;
  color: white;
}
