/* ============================================
   CONFIRMACION.CSS - Estilos nativos sin CDN
   Tailwind-like utilities + componentes custom
   VERSION: 2.0 - Consolidado y optimizado
   ============================================ */

/* ============================================
   BLOQUEO DE FUENTES
   ============================================ */
#x-confirmacion,
#x-confirmacion * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji" !important;
}
#x-confirmacion i,
#x-confirmacion .fa,
#x-confirmacion [class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
@font-face {
  font-family: 'Roboto';
  src: none !important;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-6xl { max-width: 72rem; }
.max-w-\[220px\] { max-width: 220px; }

/* ============================================
   DISPLAY & FLEXBOX
   ============================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.self-center { align-self: center; }

.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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.flex-1 { flex: 1 1 0%; }
.min-w-\[280px\] { min-width: 280px; }
.shrink-0 { flex-shrink: 0; }

/* ============================================
   SPACING
   ============================================ */
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-1 { row-gap: 0.25rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }

.divide-y > * + * { border-top-width: 1px; }
.divide-gray-100 > * + * { border-top-color: #f3f4f6; }

/* PADDING */
.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-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }

/* MARGIN */
.m-0 { margin: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.ms-3 { margin-left: 0.75rem; }
.ms-6 { margin-left: 1.5rem; }
.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }
.-start-3 { left: -0.75rem; }

/* ============================================
   WIDTH & HEIGHT
   ============================================ */
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-14 { width: 3.5rem; }
.w-72 { width: 18rem; }
.w-full { width: 100%; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-14 { height: 3.5rem; }
.h-full { height: 100%; }
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.max-h-40 { max-height: 10rem; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-\[10px\] { font-size: 10px; line-height: 1.25; }
.text-\[11px\] { font-size: 11px; line-height: 1.3; }
.text-\[12px\] { font-size: 12px; line-height: 1.35; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

.break-all { word-break: break-all; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ============================================
   COLORS
   ============================================ */
/* Text colors */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-sky-300 { color: #7dd3fc; }
.text-sky-400 { color: #38bdf8; }
.text-sky-600 { color: #0284c7; }
.text-sky-700 { color: #0369a1; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-amber-700 { color: #b45309; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-rose-700 { color: #be123c; }
.text-orange-600 { color: #ea580c; }
.text-fuchsia-600 { color: #c026d3; }
.text-indigo-700 { color: #4338ca; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-300 { background-color: #cbd5e1; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-sky-100 { background-color: #e0f2fe; }
.bg-sky-300 { background-color: #7dd3fc; }
.bg-sky-400 { background-color: #38bdf8; }
.bg-sky-600 { background-color: #0284c7; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-200 { background-color: #bbf7d0; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-yellow-200 { background-color: #fef08a; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-200 { background-color: #fecaca; }
.bg-rose-100 { background-color: #ffe4e6; }
.bg-indigo-100 { background-color: #e0e7ff; }

/* ============================================
   BORDERS
   ============================================ */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-s { border-left-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-300 { border-color: #93c5fd; }
.border-sky-300 { border-color: #7dd3fc; }
.border-sky-400 { border-color: #38bdf8; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-300 { border-color: #86efac; }
.border-green-700 { border-color: #15803d; }
.border-yellow-200 { border-color: #fef08a; }
.border-yellow-300 { border-color: #fde047; }
.border-red-200 { border-color: #fecaca; }
.border-red-300 { border-color: #fca5a5; }
.border-red-400 { border-color: #f87171; }
.border-dashed { border-style: dashed; }

/* ============================================
   ROUNDED
   ============================================ */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================
   SHADOW & EFFECTS
   ============================================ */
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

.ring { box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1); }
.ring-1 { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
.ring-sky-200 { box-shadow: 0 0 0 1px #bae6fd; }
.ring-sky-300 { box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.5); }
.ring-green-200 { box-shadow: 0 0 0 1px #bbf7d0; }
.ring-green-300 { box-shadow: 0 0 0 3px rgba(134, 239, 172, 0.5); }
.ring-amber-200 { box-shadow: 0 0 0 1px #fcd34d; }
.ring-rose-200 { box-shadow: 0 0 0 1px #fecdd3; }
.ring-indigo-200 { box-shadow: 0 0 0 1px #c7d2fe; }

/* ============================================
   POSITION & Z-INDEX
   ============================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-\[1000\] { z-index: 1000; }

/* ============================================
   OVERFLOW
   ============================================ */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }

/* ============================================
   CURSOR & POINTER
   ============================================ */
.cursor-not-allowed { cursor: not-allowed; }
.cursor-pointer { cursor: pointer; }

/* ============================================
   OPACITY & TRANSITION
   ============================================ */
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-95 { opacity: 0.95; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* ============================================
   PSEUDO STATES
   ============================================ */
/* Hover states */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-sky-700:hover { background-color: #0369a1; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:border-red-400:hover { border-color: #f87171; }

/* Focus */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px var(--tw-ring-color); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--tw-ring-color); }
.focus\:ring-blue-300:focus { --tw-ring-color: rgba(147, 197, 253, 0.5); }
.focus\:ring-blue-500:focus { --tw-ring-color: rgba(59, 130, 246, 0.5); }
.focus\:ring-sky-300:focus { --tw-ring-color: rgba(125, 211, 252, 0.5); }
.focus\:ring-green-300:focus { --tw-ring-color: rgba(134, 239, 172, 0.5); }
.focus\:border-blue-500:focus { border-color: #3b82f6; }
.focus\:border-sky-400:focus { border-color: #38bdf8; }

/* Focus within */
.focus-within\:ring-2:focus-within { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus-within\:ring-blue-500:focus-within { --tw-ring-color: rgba(59, 130, 246, 0.5); }

/* Nth-child */
.odd\:bg-white:nth-child(odd) { background-color: #ffffff; }
.even\:bg-gray-50:nth-child(even) { background-color: #f9fafb; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:text-right { text-align: right; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:col-span-10 { grid-column: span 10 / span 10; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:w-72 { width: 18rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:inline { display: inline; }
}

@media (min-width: 768px) {
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-12 { grid-column: span 12 / span 12; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:block { display: block !important; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

@media (min-width: 1536px) {
  .\32xl\:px-0 { padding-left: 0; padding-right: 0; }
}

/* Header branding - ATV Rainbow Mountain */
#x-confirmacion .x-header-brand {
  background: #dc2626 !important;
  border: none !important;
  box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1) !important;
}
#x-confirmacion .x-brand-logo {
  width: auto !important;
  height: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
}
#x-confirmacion .x-brand-text {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}
#x-confirmacion .x-brand-name {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.025em !important;
  color: #ffffff !important;
}
#x-confirmacion .x-brand-ruc {
  font-size: 0.75rem !important;
  opacity: 0.95 !important;
  font-weight: 500 !important;
  color: #ffffff !important;
}
#x-confirmacion .x-brand-info {
  color: #ffffff !important;
}
#x-confirmacion .x-brand-info i {
  color: #fde68a !important;
}
#x-confirmacion .x-brand-info .info-row {
  font-size: 0.75rem !important;
  opacity: 0.95 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
  color: #ffffff !important;
}
@media (max-width: 640px) {
  #x-confirmacion .x-brand-logo { height: 40px !important; max-height: 40px !important; }
  #x-confirmacion .x-brand-name { font-size: 0.8125rem !important; }
  #x-confirmacion .x-brand-info .info-row { font-size: 0.6875rem !important; }
}

/* Viajeros card */
#x-confirmacion .vx-viajero { background:#fafafa; }
#x-confirmacion .vx-viajero input,#x-confirmacion .vx-viajero select { background:#ffffff; }
#x-confirmacion #viajeros .vx-viajero:focus-within { box-shadow:0 0 0 2px rgba(37,99,235,.45); }
#x-confirmacion .vx-viajero input[disabled],#x-confirmacion .vx-viajero select[disabled] { opacity:1; cursor:not-allowed; }

/* Payment meta */
#x-confirmacion .x-pay-meta { background:#f1f5f9; border:1px solid #e2e8f0; border-radius:.5rem; padding:.6rem .75rem; }
#x-confirmacion .x-pay-meta div span:first-child { font-weight:600; color:#1e293b; }

/* Badge ID reserva */
#x-confirmacion .x-rid-badge { background:#1d4ed8; color:#fff; padding:2px 10px; border-radius:9999px; font-size:.75rem; line-height:1rem; display:inline-block; }

/* Textos específicos del tema */
#x-confirmacion .text-gray-500,
#x-confirmacion .text-gray-600,
#x-confirmacion .text-gray-700 { color:#1e293b; }
#x-confirmacion .text-gray-400 { color:#334155; }
#x-confirmacion input,#x-confirmacion select,#x-confirmacion textarea { color:#111827; font-weight:500; }
#x-confirmacion input::placeholder,#x-confirmacion select::placeholder { color:#64748b; opacity:.9; }
#x-confirmacion label { color:#0f172a; font-weight:600; }

/* HTMX indicators */
#x-confirmacion .hx-indicator { display:none; }
#x-confirmacion .htmx-request .hx-indicator, #x-confirmacion .htmx-request.hx-indicator { display:inline-block; }

/* Mensaje animado */
#x-confirmacion .vx-msg-ok { animation:fadeOk 3s ease-in forwards; }
@keyframes fadeOk { 0%{opacity:1;} 80%{opacity:1;} 100%{opacity:0;} }

/* Modal PDF */
#x_pdf_modal .relative {
  width: 95vw;
  max-width: 1000px;
  max-height: 90vh;
}
#x_pdf_iframe {
  height: 75vh;
  min-height: 60vh;
}

/* ============================================
   ESTILOS ESPECÍFICOS DE SEARCH.PHP
   ============================================ */
body { background: #f8fafc; }

:root {
  --grad-a: #0ea5e9;
  --grad-b: #6366f1;
}

.grad-text {
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-reserva {
  position: relative;
}
.card-reserva::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  padding: 1px;
  background: linear-gradient(110deg, var(--grad-a), var(--grad-b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .4;
  pointer-events: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}
thead {
  background: #f8fafc;
}
thead th {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #475569;
}
tbody tr:hover {
  background: #f8fafc;
}
tbody td {
  border-bottom: 1px solid #e2e8f0;
}
