body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

header {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1em;
}

header img {
  max-width: 200px;
  height: auto;
}

form {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #003366;
  font-size: 1.5em;
  margin-bottom: 1em;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

input[type="text"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="date"] {
  font-family: Arial, sans-serif;
  cursor: pointer;
}

input[type="checkbox"] {
  margin-right: 0.5em;
  vertical-align: middle;
}

.honeypot {
  display: none;
}

.hidden {
  display: none;
}

.sDriveInput {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.sDriveInput input {
  flex: 1;
}

.removeSDrive,
#addSDrive {
  margin-left: 10px;
  padding: 5px 10px;
  background: #003366;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#submit-btn,
#reset-btn {
  padding: 10px 20px;
  margin: 10px 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#submit-btn {
  background: #003366;
  color: white;
}

#submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

#reset-btn {
  background: #ccc;
}

.error {
  color: red;
  font-size: 0.8em;
  display: none;
}

#form-message {
  margin-top: 1em;
  font-weight: bold;
}

#form-message.success {
  color: green;
}

#form-message.error {
  color: red;
}