/* Base reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #0b0c0c;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  margin-top: 2rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

p {
  margin: 1rem 0;
}

a {
  color: #1d70b8;
  text-decoration: underline;
}

/* Layout helpers (Tailwind-like minimal set) */
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4 { padding: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border-bottom: 1px solid #b1b4b6;
  padding: 0.75rem;
  text-align: left;
}

/* Map container */
#seat-map {
  height: 420px;
  border: 4px solid #0b0c0c;
}
