/* Copyright (c) 2024 HJJB, LLC */
:root { --primary: #3498db; --success: #27ae60; --error: #e74c3c; }
* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; max-width: 900px; margin: 0 auto; padding: 20px; background: #ecf0f1; }
.container { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
header { text-align: center; margin-bottom: 30px; border-bottom: 2px solid #bdc3c7; padding-bottom: 20px; }
header h1 { color: var(--primary); margin: 0; }
.section { margin-bottom: 20px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input, select, textarea { width: 100%; padding: 10px; border: 2px solid #bdc3c7; border-radius: 4px; font-family: monospace; }
textarea { min-height: 100px; resize: vertical; }
.btn-primary { padding: 12px 24px; background: var(--primary); color: white; border: none; border-radius: 4px; cursor: pointer; width: 100%; }
.response-info { display: flex; justify-content: space-between; padding: 10px; background: #f8f9fa; border-radius: 4px; margin-bottom: 10px; }
pre { background: #2c3e50; color: #ecf0f1; padding: 15px; border-radius: 4px; overflow-x: auto; max-height: 400px; }
.example-btn { padding: 8px 16px; background: #95a5a6; color: white; border: none; border-radius: 4px; cursor: pointer; margin: 5px; }
