/* Tailwind CSS Utilities — Static Build (generated for Safe Navigation) */
/* This file provides all Tailwind utility classes used in the app for production builds */

/* === LAYOUT === */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-2 > :not(:first-child) { margin-top: 0.5rem; }
.space-y-6 > :not(:first-child) { margin-top: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* === POSITIONING === */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.left-4 { left: 1rem; }

/* === Z-INDEX === */
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.z-\[150\] { z-index: 150; }
.z-\[200\] { z-index: 200; }
.z-\[9999\] { z-index: 9999; }

/* === SIZING === */
.w-0 { width: 0; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-full { height: 100%; }
.h-\[80vh\] { height: 80vh; }
.min-h-screen { min-height: 100vh; }
.min-w-\[16rem\] { min-width: 16rem; }
.max-w-xs { max-width: 20rem; }
.max-w-lg { max-width: 32rem; }

/* === OVERFLOW === */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* === PADDING === */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.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; }
.pt-3 { padding-top: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }

/* === MARGIN === */
.m-0 { margin: 0; }
.mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.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; }
.mb-8 { margin-bottom: 2rem; }
.ml-auto { margin-left: auto; }

/* === TYPOGRAPHY === */
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.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-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.whitespace-nowrap { white-space: nowrap; }
.align-top { vertical-align: top; }

/* === TEXT COLORS === */
.text-white { color: #fff; }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-cyan-400 { color: #22d3ee; }
.text-sky-400 { color: #38bdf8; }
.text-emerald-400 { color: #34d399; }
.text-amber-400 { color: #fbbf24; }

/* === BACKGROUND COLORS === */
.bg-black { background-color: #000; }
.bg-black\/70 { background-color: rgba(0,0,0,0.7); }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-blue-500\/10 { background-color: rgba(59,130,246,0.1); }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-600\/20 { background-color: rgba(37,99,235,0.2); }
.bg-amber-500\/5 { background-color: rgba(245,158,11,0.05); }
.bg-amber-500\/10 { background-color: rgba(245,158,11,0.1); }
.bg-emerald-500\/10 { background-color: rgba(16,185,129,0.1); }
.bg-orange-500\/10 { background-color: rgba(249,115,22,0.1); }
.bg-red-900\/90 { background-color: rgba(127,29,29,0.9); }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-900\/50 { background-color: rgba(15,23,42,0.5); }
.bg-slate-900\/80 { background-color: rgba(15,23,42,0.8); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59,130,246,0)); }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }

/* === BORDERS === */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-blue-500\/30 { border-color: rgba(59,130,246,0.3); }
.border-amber-500\/20 { border-color: rgba(245,158,11,0.2); }
.border-amber-500\/30 { border-color: rgba(245,158,11,0.3); }
.border-emerald-500\/20 { border-color: rgba(16,185,129,0.2); }
.border-orange-500\/20 { border-color: rgba(249,115,22,0.2); }
.border-red-500 { border-color: #ef4444; }

/* === ROUNDED === */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[3rem\] { border-radius: 3rem; }

/* === SHADOWS === */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* === EFFECTS === */
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.blur-xl { filter: blur(24px); }

/* === TRANSITIONS === */
.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; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* === ANIMATION === */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* === POINTER === */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.cursor-pointer { cursor: pointer; }

/* === HOVER STATES === */
.hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/30:hover { background-color: rgba(255,255,255,0.3); }
.hover\:bg-blue-500:hover { background-color: #3b82f6; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-orange-500\/20:hover { background-color: rgba(249,115,22,0.2); }
.hover\:bg-emerald-500\/20:hover { background-color: rgba(16,185,129,0.2); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-white\/50:hover { color: rgba(255,255,255,0.5); }
.hover\:text-white\/60:hover { color: rgba(255,255,255,0.6); }
.hover\:text-blue-300:hover { color: #93c5fd; }
.group:hover .group-hover\:text-white { color: #fff; }

/* === FOCUS STATES === */
.focus\:outline-none:focus { outline: none; }
.focus\:border-amber-500:focus { border-color: #f59e0b; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .sm\:items-center { align-items: center; }
  .sm\:mb-0 { margin-bottom: 0; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* === GROUP === */
.group { position: relative; }

/* === EXTRA COLORS (Instrument Panel, etc.) === */
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-green-400 { color: #4ade80; }
.text-orange-400 { color: #fb923c; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-yellow-400 { color: #facc15; }
.text-purple-400 { color: #c084fc; }
.bg-green-500\/10 { background-color: rgba(34,197,94,0.1); }
.bg-red-500\/20 { background-color: rgba(239,68,68,0.2); }
.bg-orange-500\/20 { background-color: rgba(249,115,22,0.2); }
.bg-slate-800\/40 { background-color: rgba(30,41,59,0.4); }
.bg-slate-900\/40 { background-color: rgba(15,23,42,0.4); }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-blue-500\/20 { background-color: rgba(59,130,246,0.2); }
.bg-red-600 { background-color: #dc2626; }
.bg-slate-700 { background-color: #334155; }
.border-green-500\/20 { border-color: rgba(34,197,94,0.2); }
.border-red-500\/40 { border-color: rgba(239,68,68,0.4); }
.border-orange-500\/40 { border-color: rgba(249,115,22,0.4); }
.border-slate-700\/40 { border-color: rgba(51,65,85,0.4); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.col-span-1 { grid-column: span 1 / span 1; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.gap-1\.5 { gap: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.h-3 { height: 0.75rem; }
.flex-wrap { flex-wrap: wrap; }
.w-fit { width: fit-content; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
@media (min-width: 768px) {
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:pr-4 { padding-right: 1rem; }
  .md\:border-r { border-right-width: 1px; border-right-style: solid; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* === DASHBOARD WIDGET + CYAN/GLOBAL EXTRAS === */
.text-cyan-100 { color: #cffafe; }
.text-cyan-200\/80 { color: rgba(165,243,252,0.8); }
.text-cyan-200\/70 { color: rgba(165,243,252,0.7); }
.text-cyan-200\/50 { color: rgba(165,243,252,0.5); }
.text-cyan-400 { color: #22d3ee; }
.text-cyan-500\/40 { color: rgba(6,182,212,0.4); }
.text-blue-400 { color: #60a5fa; }
.border-cyan-500\/20 { border-color: rgba(6,182,212,0.2); }
.border-cyan-400\/40 { border-color: rgba(34,211,238,0.4); }
.border-t-cyan-400 { border-top-color: #22d3ee; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/15 { background-color: rgba(255,255,255,0.15); }
.bg-cyan-900\/30 { background-color: rgba(22,78,99,0.3); }
.bg-cyan-400\/40 { background-color: rgba(34,211,238,0.4); }
.z-\[80\] { z-index: 80; }
.z-10 { z-index: 10; }
.inline-block { display: inline-block; }
.mr-1 { margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.pr-10 { padding-right: 2.5rem; }
.p-1\.5 { padding: 0.375rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.h-\[2px\] { height: 2px; }
.border-2 { border-width: 2px; border-style: solid; }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hover\:bg-white\/15:hover { background-color: rgba(255,255,255,0.15); }

/* === COMMON TEXT COLORS USED ACROSS COMPONENTS === */
.text-emerald-400 { color: #34d399; }
.text-emerald-500 { color: #10b981; }
.text-indigo-400 { color: #818cf8; }
.text-rose-400 { color: #fb7185; }
.text-rose-500 { color: #f43f5e; }
.text-amber-500 { color: #f59e0b; }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.bg-emerald-500\/20 { background-color: rgba(16,185,129,0.2); }
.bg-blue-600\/20 { background-color: rgba(37,99,235,0.2); }
.bg-amber-600 { background-color: #d97706; }
.bg-indigo-500\/10 { background-color: rgba(99,102,241,0.1); }
.border-blue-400\/30 { border-color: rgba(96,165,250,0.3); }
.border-emerald-400\/30 { border-color: rgba(52,211,153,0.3); }
