/**
 * Temporary utility bridge while production templates finish migrating off Tailwind.
 * Prefer semantic classes in eo-shell.css / eo-ui.css for new markup.
 */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }
.contents { display: contents; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.grow { flex-grow: 1; }
.min-w-0 { min-width: 0; }
.min-h-\[2\.75rem\] { min-height: 2.75rem; }
.w-full { width: 100%; }
.w-16 { width: 4rem; }
.w-48 { width: 12rem; }
.max-w-none { max-width: none; }
.max-w-full { max-width: 100%; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-\[6\.5rem_minmax\(0\,1fr\)\] {
  grid-template-columns: 6.5rem minmax(0, 1fr);
}
.col-span-2 { grid-column: span 2 / span 2; }
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:col-span-1 { grid-column: span 1 / span 1; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:grid-cols-\[4\.5rem_minmax\(0\,1\.4fr\)_6\.5rem_7\.5rem_auto\] {
    grid-template-columns: 4.5rem minmax(0, 1.4fr) 6.5rem 7.5rem auto;
  }
  .sm\:grid-cols-\[6\.5rem_minmax\(0\,1fr\)_auto\] {
    grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:w-auto { width: auto; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-\[15px\] { font-size: 15px; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:hidden { display: none !important; }
  .sm\:table-cell { display: table-cell; }
  .sm\:min-w-0 { min-width: 0; }
  .sm\:flex-wrap { flex-wrap: wrap; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:table-cell { display: table-cell; }
}
@media (min-width: 1024px) {
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[minmax\(0\,1fr\)_min\(16rem\,100\%\)\] {
    grid-template-columns: minmax(0, 1fr) min(16rem, 100%);
  }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none !important; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:mb-0 { margin-bottom: 0; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:sticky { position: sticky; }
  .lg\:top-4 { top: 1rem; }
}

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pl-6 { padding-left: 1.5rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-auto { margin-left: auto; }
.mr-2 { margin-right: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }

.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-green-200 { border-color: #bbf7d0; }
.border-blue-200 { border-color: #bfdbfe; }
.border-red-200 { border-color: #fecaca; }
.border-yellow-200 { border-color: #fde68a; }
.border-orange-200 { border-color: #fed7aa; }
.border-red-500 { border-color: #ef4444; }

.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-50\/90 { background-color: rgba(249, 250, 251, 0.9); }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-\[\#f8fafb\] { background-color: #f8fafb; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-amber-100 { background-color: #fef3c7; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[15px\] { font-size: 15px; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-sans { font-family: var(--sans, "Source Sans 3", Arial, sans-serif); }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words { overflow-wrap: anywhere; word-break: break-word; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-gray-300 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-green-900 { color: #14532d; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-red-900 { color: #7f1d1d; }
.text-yellow-800 { color: #854d0e; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-amber-900 { color: #78350f; }
.text-\[\#063755\] { color: #063755; }
.text-\[\#163c59\] { color: #163c59; }

.shadow { box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.align-middle { vertical-align: middle; }
.cursor-pointer { cursor: pointer; }
.cursor-help { cursor: help; }
.list-none { list-style: none; }
.list-disc { list-style: disc; }
.divide-y > * + * { border-top: 1px solid #f3f4f6; }
.divide-gray-100 > * + * { border-top-color: #f3f4f6; }

.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-50\/60:hover { background-color: rgba(249, 250, 251, 0.6); }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }

.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(6, 55, 85, 0.35); }
.focus\:ring-\[\#063755\]:focus { box-shadow: 0 0 0 2px rgba(6, 55, 85, 0.45); }

.group:hover .group-hover\:block { display: block; }
.group[open] .group-open\:hidden { display: none !important; }
.group[open] .group-open\:inline { display: inline !important; }
.group:not([open]) .group-open\:inline { display: none !important; }

details > summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; }

/* Panel-like card still used as outer wrappers during migration */
.mx-auto.p-4.bg-white.rounded.shadow,
.mx-auto.p-6.bg-white.rounded.shadow {
  background: #fff;
  border: 1px solid var(--line, #dce0e5);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  padding: 20px 22px;
}

.border-red-500 { border-color: #ef4444 !important; }
.bg-red-50 { background-color: #fef2f2; }
.border-\[\#063755\] { border-color: #063755; }
.border-transparent { border-color: transparent; }
.mb-5 { margin-bottom: 1.25rem; }
.hover\:text-red-800:hover { color: #991b1c; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }

/* Seat bar / small geometry still used in house results */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-y-0 { top: 0; bottom: 0; }
.z-10 { z-index: 10; }
.pointer-events-none { pointer-events: none; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.w-2\.5 { width: 0.625rem; }
.h-2\.5 { height: 0.625rem; }
.w-0\.5 { width: 0.125rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-y-1 { row-gap: 0.25rem; }
.bg-gray-900\/80 { background-color: rgba(17, 24, 39, 0.8); }
.text-gray-900\/80 { color: rgba(17, 24, 39, 0.8); }
.text-gray-400 { color: #9ca3af; }
@media (min-width: 640px) {
  .sm\:h-8 { height: 2rem; }
}
