body, html {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  padding: 20px;
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
  text-align: center;
  margin-bottom: 30px;
}
.header h1 {
  color: #333;
  margin-bottom: 5px;
}
.header h2 {
  color: #666;
  margin-top: 0;
}
.divider {
  margin: 30px 0;
  border-top: 1px solid #eee;
}
.clear-button {
  display: flex;
  justify-content: flex-end;
}
.date-time-fields {
  display: flex;
  justify-content: space-between;
}
.date-time-fields .field {
  width: 48%;
}
@media screen and (max-width: 960px) {
  body, html {
    padding: 0px !important;
  }
}
