/* Base Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* Header */
header {
   background-color: #FFD700;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

/* Main Content */
main {
  max-width: 600px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h2 {
  margin-top: 0;
  color: #333333;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #003366;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background-color: #0055a5;
}

/* Footer */
footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  main {
    margin: 20px;
    padding: 20px;
  }
}

/* Extracted from inline style="" attributes (CSP default-src 'self' blocks inline styles) */
.request-option-label {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}
.request-option-label-last {
  display: inline-flex;
  align-items: center;
}
.request-option-text {
  width: 100px;
  white-space: nowrap;
  margin-left: 5px;
}
