/**
 * layout.css — Go Fire (fAIre)
 * Reset, body, and main layout grid.
 * Depends on: nothing (loads first)
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Bulletproof button clicks — every descendant of a <button> becomes
   click-through, so the click always lands on the button itself.
   Fixes the case where inner icons / Lucide-rendered SVG paths / spans
   swallow the click event and the button's onclick never fires. */
button * {
    pointer-events: none;
}
/* Keep form fields interactive when they're placed inside a button
   (e.g. inline-rename inputs swapped into a button's content). */
button input,
button textarea,
button select {
    pointer-events: auto;
}

body {
    background: #0d0d0d;
    color: #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Main Layout ── */
.main {
    display: flex;
    flex: 1;
    overflow: hidden;
}
