/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
}
.test-form-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-height: 90vh;
  overflow-y: auto;
}
h1 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 24px;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}
input, select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 4px;
}
.helper-text {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
/* Button: black background, white text */
.submit-button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}
.submit-button:hover {
  background-color: #333;
}
#debugOutput {
  margin-top: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 4px;
  font-family: monospace;
  white-space: pre-wrap;
  display: none;
}
.loading {
  opacity: 0.5;
  pointer-events: none;
}
.loading::after {
  content: "Processing...";
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #666;
}
/* Responsive */
@media (max-width: 480px) {
  body {
    margin: 20px;
    padding: 10px;
  }
  h1 {
    font-size: 20px;
  }
  .submit-button {
    padding: 10px;
    font-size: 14px;
  }
}
.switch-container {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.switch-container input[type="radio"] {
  width: auto;
  margin-right: 5px;
}

.switch-container label {
  display: inline-block;
  margin: 0;
  cursor: pointer;
}