/* Copyright (c) 2024 HJJB, LLC */
:root { --primary: #3498db; --success: #27ae60; }
* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; max-width: 1000px; 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; }
.branches { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.branch { padding: 15px; background: #f8f9fa; border-radius: 8px; }
textarea { width: 100%; min-height: 120px; padding: 10px; border: 2px solid #bdc3c7; border-radius: 4px; font-family: monospace; resize: vertical; }
.btn-primary, .btn-success { padding: 12px 24px; color: white; border: none; border-radius: 4px; cursor: pointer; width: 100%; margin-top: 10px; }
.btn-primary { background: var(--primary); }
.btn-success { background: var(--success); }
.section { margin-top: 20px; padding: 20px; background: #fff3cd; border-radius: 8px; border-left: 4px solid #ffc107; }
pre { background: #2c3e50; color: #ecf0f1; padding: 15px; border-radius: 4px; }
