/*
 * Minimal local utility layer for production entry pages.
 * Covers Tailwind-style classes used by login/index, batch pages, mes-page-header, mes-page-main scroll lock.
 */
.hidden { display: none !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-start { align-items: flex-start; }
.self-stretch { align-self: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1\.5 { gap: 0.375rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.p-8 { padding: 2rem; }
.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; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }

.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.max-w-md { max-width: 28rem; }
.overflow-y-auto { overflow-y: auto; }

.cursor-default { cursor: default; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; border-style: solid; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.18), 0 8px 10px -6px rgba(15, 23, 42, 0.18); }
/* 706: 弹窗遮罩在 mes-ui-baseline 中禁用 blur；保留类名兼容旧 HTML */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
body.mes-baseline-page .mes-modal-backdrop.backdrop-blur-sm,
body.mes-baseline-page [id^="modal-"].backdrop-blur-sm {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.bg-white { background-color: #fff; }
.bg-blue-600 { background-color: #2563eb; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-slate-900\/40 { background-color: rgba(15, 23, 42, 0.4); }
.border-amber-200 { border-color: #fde68a; }
.border-red-200 { border-color: #fecaca; }
.border-red-500\/40 { border-color: rgba(239, 68, 68, 0.4); }
.border-slate-600 { border-color: #475569; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.01em; }
.tracking-wide { letter-spacing: 0.025em; }
.underline { text-decoration-line: underline; }

.text-white { color: #fff; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-red-700 { color: #b91c1c; }
.text-amber-700 { color: #b45309; }
.text-emerald-400 { color: #34d399; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-600 { color: #475569; }

.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.transition-colors { transition: color .15s ease, background-color .15s ease, border-color .15s ease; }
.hover\:text-white:hover { color: #fff; }
.hover\:border-slate-500:hover { border-color: #64748b; }

.animate-spin { animation: mes-spin 1s linear infinite; }
@keyframes mes-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 690 batch1: admin/master pages */

@keyframes mes-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes mes-blob { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-50px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(0.9); } }
@keyframes mes-slide-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; }
.divide-slate-50 > :not([hidden]) ~ :not([hidden]) { border-color: #f8fafc; }
.divide-slate-100 > :not([hidden]) ~ :not([hidden]) { border-color: #f1f5f9; }
.top-\[7px\] { top: 7px; }
.p-2\.5 { padding: 0.625rem; }
.active { /* active pseudo - noop */ }
.animate-blob { animation: mes-blob 7s infinite; }
.animate-pulse { animation: mes-pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.animate-slide-up { animation: mes-slide-up .3s ease-out; }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-green-700 { background-color: #15803d; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-500 { background-color: #f97316; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-600 { background-color: #9333ea; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-600 { background-color: #0d9488; }
.block { display: block; }
.blur-3xl { filter: blur(64px); }
.border-amber-100 { border-color: #fef3c7; }
.border-b { border-bottom-width: 1px; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-collapse { border-collapse: collapse; }
.border-emerald-100 { border-color: #d1fae5; }
.border-emerald-200 { border-color: #a7f3d0; }
.border-orange-200 { border-color: #fed7aa; }
.border-purple-100 { border-color: #f3e8ff; }
.border-purple-200 { border-color: #e9d5ff; }
.border-r { border-right-width: 1px; }
.border-red-300 { border-color: #fca5a5; }
.border-red-600 { border-color: #dc2626; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
.border-slate-900 { border-color: #0f172a; }
.border-t { border-top-width: 1px; }
.border-teal-100 { border-color: #ccfbf1; }
.border-transparent { border-color: transparent; }
.break-all { word-break: break-all; }
.col-amt { /* custom col-amt */ }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-full { grid-column: 1 / -1; }
.cursor-pointer { cursor: pointer; }
/* divide */
/* divide requires child selectors - simplified */
.divide-y { border-top-width: 0; }
.filter { filter: var(--tw-blur) var(--tw-brightness); }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-5 { gap: 1.25rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.group { /* group marker */ }
.h-10 { height: 2.5rem; }
.h-3 { height: 0.75rem; }
.h-6 { height: 1.5rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.inline-block { display: inline-block; }
.italic { font-style: italic; }
.items-end { align-items: flex-end; }
.justify-end { justify-content: flex-end; }
.leading-tight { line-height: 1.25; }
.left-2 { left: 0.5rem; }
.max-h-24 { max-height: 6rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-sm { max-width: 24rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-8 { margin-bottom: 2rem; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.min-h-0 { min-height: 0; }
.mix-blend-multiply { mix-blend-mode: multiply; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-auto { margin-left: auto; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-auto { margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-90 { opacity: 0.9; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.p-10 { padding: 2.5rem; }
.p-16 { padding: 4rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-4 { padding-left: 1rem; }
.placeholder-slate-300::placeholder { color: #cbd5e1; }
.pointer-events-none { pointer-events: none; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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; }
.resize-none { resize: none; }
.rounded { border-radius: 0.25rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: 0.375rem; }
.shadow { box-shadow: 0 1px 2px rgba(15,23,42,.06); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(15,23,42,.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(15,23,42,.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(15,23,42,.1); }
.shadow-sm { box-shadow: 0 1px 3px rgba(15,23,42,.1); }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.sticky { position: sticky; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-800 { color: #92400e; }
.text-amber-900 { color: #78350f; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-900 { color: #1e3a8a; }
.text-cyan-300 { color: #67e8f9; }
.text-cyan-400 { color: #22d3ee; }
.text-emerald-300 { color: #6ee7b7; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }
.text-emerald-800 { color: #065f46; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-indigo-300 { color: #a5b4fc; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }
.text-left { text-align: left; }
.text-orange-400 { color: #fb923c; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-purple-300 { color: #d8b4fe; }
.text-purple-600 { color: #9333ea; }
.text-purple-900 { color: #581c87; }
.text-red-200 { color: #fecaca; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }
.text-rose-300 { color: #fda4af; }
.text-rose-400 { color: #fb7185; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-500 { color: #64748b; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-teal-600 { color: #0d9488; }
.text-teal-900 { color: #134e4a; }
.text-violet-300 { color: #c4b5fd; }
.text-violet-400 { color: #a78bfa; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.top-0 { top: 0; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.transition-all { transition: all .15s ease; }
.transition-opacity { transition: all .15s ease; }
.transition-transform { transition: all .15s ease; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uppercase { text-transform: uppercase; }
.w-10 { width: 2.5rem; }
.w-20 { width: 5rem; }
.w-3 { width: 0.75rem; }
.w-6 { width: 1.5rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-px { width: 1px; }
.whitespace-nowrap { white-space: nowrap; }

/* 690 batch1 utilities (extended) */
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-4 { column-gap: 0.5rem; }
.gap-x-6 { column-gap: 0.5rem; }
.gap-y-1 { row-gap: 0.75rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 0.75rem; }
.h-1\.5 { height:0.375rem }
.p-1\.5 { padding:0.375rem }
.p-3\.5 { padding:0.875rem }
.mb-0\.5 { margin-bottom:0.125rem }
.mb-1\.5 { margin-bottom:0.375rem }
.mt-1\.5 { margin-top:0.375rem }
.mx-0\.5 { margin-left:0.125rem;margin-right:0.125rem }
.pb-1\.5 { padding-bottom:0.375rem }
.pt-1\.5 { padding-top:0.375rem }
.px-1\.5 { padding-left:0.375rem;padding-right:0.375rem }
.px-2\.5 { padding-left:0.625rem;padding-right:0.625rem }
.py-0\.5 { padding-top:0.125rem;padding-bottom:0.125rem }
.py-1\.5 { padding-top:0.375rem;padding-bottom:0.375rem }
.py-2\.5 { padding-top:0.625rem;padding-bottom:0.625rem }
.py-3\.5 { padding-top:0.875rem;padding-bottom:0.875rem }
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.125rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.-top-40 { top: -10rem; }
.-right-40 { right: -10rem; }
.active\:scale-95:active { transform: scale(0.95); }
.bg-red-950\/40 { background-color: rgba(69,10,10,0.4); }
.bg-slate-50\/50 { background-color: rgba(248,250,252,0.5); }
.bg-slate-50\/80 { background-color: rgba(248,250,252,0.8); }
.bg-slate-800\/50 { background-color: rgba(30,41,59,0.5); }
.bg-slate-800\/70 { background-color: rgba(30,41,59,0.7); }
.bg-slate-800\/80 { background-color: rgba(30,41,59,0.8); }
.bg-slate-900\/40 { background-color: rgba(15,23,42,0.4); }
.bg-slate-900\/50 { background-color: rgba(15,23,42,0.5); }
.bg-slate-900\/60 { background-color: rgba(15,23,42,0.6); }
.border-red-500\/40 { border-color: rgba(239,68,68,0.4); }
.border-slate-700\/50 { border-color: rgba(51,65,85,0.5); }
.border-slate-700\/80 { border-color: rgba(51,65,85,0.8); }
.border-slate-800\/40 { border-color: rgba(30,41,59,0.4); }
.text-amber-500\/90 { color: rgba(245,158,11,0.9); }
.text-amber-700\/90 { color: rgba(180,83,9,0.9); }
.text-blue-300\/70 { color: rgba(147,197,253,0.7); }
.text-green-900\/80 { color: rgba(20,83,45,0.8); }
.shadow-amber-600\/30 { box-shadow: 0 10px 15px -3px rgba(37,99,235,.2); }
.shadow-blue-600\/20 { box-shadow: 0 10px 15px -3px rgba(37,99,235,.2); }
.shadow-blue-900\/40 { box-shadow: 0 10px 15px -3px rgba(37,99,235,.2); }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.max-h-\[220px\] { max-height: 220px; }
.max-h-\[74vh\] { max-height: 74vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-w-\[100px\] { max-width: 100px; }
.max-w-\[1150px\] { max-width: 1150px; }
.max-w-\[160px\] { max-width: 160px; }
.max-w-\[220px\] { max-width: 220px; }
.min-w-\[140px\] { min-width: 140px; }
.min-w-\[160px\] { min-width: 160px; }
.min-w-\[180px\] { min-width: 180px; }
.min-w-\[200px\] { min-width: 200px; }
.min-w-\[220px\] { min-width: 220px; }
.min-w-\[60px\] { min-width: 60px; }
.min-w-\[800px\] { min-width: 800px; }
.min-w-\[88px\] { min-width: 88px; }
.min-w-\[950px\] { min-width: 950px; }
.w-\[5%\] { width: 5%; }
.w-\[6%\] { width: 6%; }
.w-\[7%\] { width: 7%; }
.w-\[9%\] { width: 9%; }
.w-\[10%\] { width: 10%; }
.w-\[11%\] { width: 11%; }
.w-\[14%\] { width: 14%; }
.w-\[17%\] { width: 17%; }
.w-\[21%\] { width: 21%; }
.w-\[70px\] { width: 70px; }
.w-\[110px\] { width: 110px; }
.w-\[130px\] { width: 130px; }
@media (min-width: 768px) { .md\:w-\[350px\] { width: 350px; } }
.z-\[50\] { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[70\] { z-index: 70; }
.z-\[100\] { z-index: 100; }
@media (min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:1024px){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media (min-width:1024px){.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}}
@media (min-width:1024px){.lg\:pb-5{padding-bottom:1.25rem}}
@media (min-width:768px){.md\:col-span-2{grid-column:span 2/span 2}}
@media (min-width:768px){.md\:flex-1{flex:1 1 0%}}
@media (min-width:768px){.md\:flex-row{flex-direction:row}}
@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:640px){.sm\:flex-row{flex-direction:row}}
@media (min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:640px){.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:640px){.sm\:inline{display:inline}}
@media (min-width:640px){.sm\:items-center{align-items:center}}
@media (min-width:640px){.sm\:justify-between{justify-content:space-between}}
.hover\:bg-amber-500:hover { background-color: #f59e0b; }
.hover\:bg-amber-600:hover { background-color: #d97706; }
.hover\:bg-blue-50\/50:hover { background-color: rgba(239,246,255,0.5); }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-emerald-600:hover { background-color: #059669; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-indigo-50:hover { background-color: #eef2ff; }
.hover\:bg-orange-50:hover { background-color: #fff7ed; }
.hover\:bg-purple-50:hover { background-color: #faf5ff; }
.hover\:bg-purple-50\/50:hover { background-color: rgba(250,245,255,0.5); }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }
.hover\:bg-red-50\/50:hover { background-color: rgba(254,242,242,0.5); }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:bg-slate-900:hover { background-color: #0f172a; }
.hover\:bg-teal-50:hover { background-color: #f0fdfa; }
.hover\:bg-teal-700:hover { background-color: #0f766e; }
.hover\:border-amber-300:hover { border-color: #fcd34d; }
.hover\:border-indigo-200:hover { border-color: #c7d2fe; }
.hover\:border-indigo-500:hover { border-color: #6366f1; }
.hover\:border-orange-200:hover { border-color: #fed7aa; }
.hover\:border-purple-200:hover { border-color: #e9d5ff; }
.hover\:text-amber-700:hover { color: #b45309; }
.hover\:text-amber-800:hover { color: #92400e; }
.hover\:text-blue-300:hover { color: #93c5fd; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:text-emerald-800:hover { color: #065f46; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-slate-300:hover { color: #cbd5e1; }
.hover\:text-slate-700:hover { color: #334155; }
.hover\:text-white:hover { color: #fff; }
.hover\:border-teal-200:hover { border-color: #99f6e4; }
.hover\:underline:hover { text-decoration: underline; }
.focus\:border-amber-500:focus { border-color: #f59e0b; outline: none; }
.focus\:border-blue-500:focus { border-color: #3b82f6; outline: none; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px rgba(37,99,235,.35); outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(37,99,235,.35); outline: none; }
.focus\:ring-amber-500:focus { box-shadow: 0 0 0 2px #f59e0b; outline: none; }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 2px #3b82f6; outline: none; }
/* 698 batch2: auto-generated utilities for sales-hub/settings/wms/billing */
.\!bg-white { background-color: #fff !important; }
.\!min-h-\[28px\] { min-height: 28px !important; }
.\!text-indigo-700 { color: #4338ca !important; }
.align-middle { vertical-align: middle; }
.align-top { vertical-align: top; }
.bg-blue-50\/60 { background-color: rgba(239,246,255,0.6); }
.bg-blue-500 { background-color: #3b82f6; }
.bg-emerald-50\/60 { background-color: rgba(236,253,245,0.6); }
.bg-indigo-50 { background-color: #eef2ff; }
.bg-indigo-50\/40 { background-color: rgba(238,242,255,0.4); }
.bg-indigo-50\/50 { background-color: rgba(238,242,255,0.5); }
.bg-indigo-50\/60 { background-color: rgba(238,242,255,0.6); }
.bg-rose-50 { background-color: #fff1f2; }
.bg-slate-100\/50 { background-color: rgba(241,245,249,0.5); }
.bg-slate-50\/30 { background-color: rgba(248,250,252,0.3); }
.bg-slate-50\/50 { background-color: rgba(248,250,252,0.5); }
.bg-slate-50\/60 { background-color: rgba(248,250,252,0.6); }
.bg-slate-50\/80 { background-color: rgba(248,250,252,0.8); }
.bg-slate-50\/90 { background-color: rgba(248,250,252,0.9); }
.bg-slate-100\/50 { background-color: rgba(241,245,249,0.5); }
.bg-indigo-50\/40 { background-color: rgba(238,242,255,0.4); }
.bg-indigo-50\/50 { background-color: rgba(238,242,255,0.5); }
.hover\:bg-indigo-50\/50:hover { background-color: rgba(238,242,255,0.5); }
.bg-slate-600 { background-color: #475569; }
.bg-slate-800\/40 { background-color: rgba(30,41,59,0.4); }
.bg-slate-900\/60 { background-color: rgba(15,23,42,0.6); }
.bg-transparent { background-color: transparent; }
.border-dashed { border-style: dashed; }
.border-l { border-left-width: 1px; }
.border-none { border-style: none; }
.border-slate-50 { border-color: #f8fafc; }
.border-slate-500 { border-color: #64748b; }
.border-teal-200 { border-color: #99f6e4; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.bottom-0 { bottom: 0; }
.break-words { overflow-wrap: break-word; }
.divide-slate-100 { border-color: #f1f5f9; }
.divide-slate-50 { border-color: #f1f5f9; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.focus\:bg-white:focus { background-color: #fff; }
.focus\:border-amber-400:focus { border-color: #fbbf24; outline: none; }
.focus\:border-blue-400:focus { border-color: #60a5fa; outline: none; }
.focus\:border-teal-400:focus { border-color: #2dd4bf; outline: none; }
.focus\:ring-indigo-500:focus { box-shadow: 0 0 0 2px #6366f1; outline: none; }
.font-semibold { font-weight: 600; }
.gap-0.5 { gap: 0.125rem; }
.gap-1.5 { gap: 0.375rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-y-0.5 { row-gap: 0.125rem; }
.col-span-12 { grid-column: span 12 / span 12; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.h-12 { height: 3rem; }
.h-2 { height: 0.5rem; }
.h-3.5 { height: 0.875rem; }
.h-56 { height: 14rem; }
.hover\:bg-amber-50\/50:hover { background-color: rgba(255,251,235,0.5); }
.hover\:bg-amber-600:hover { background-color: #d97706; }
.hover\:bg-black:hover { background-color: #000; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-50\/30:hover { background-color: rgba(239,246,255,0.3); }
.hover\:bg-blue-50\/50:hover { background-color: rgba(239,246,255,0.5); }
.hover\:bg-blue-500:hover { background-color: #3b82f6; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-emerald-50:hover { background-color: #ecfdf5; }
.hover\:bg-emerald-50\/50:hover { background-color: rgba(236,253,245,0.5); }
.hover\:bg-indigo-50:hover { background-color: #eef2ff; }
.hover\:bg-indigo-50\/50:hover { background-color: rgba(238,242,255,0.5); }
.hover\:bg-indigo-500:hover { background-color: #6366f1; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:bg-red-100:hover { background-color: #fee2e2; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:bg-red-50\/40:hover { background-color: rgba(254,242,242,0.4); }
.hover\:bg-red-50\/50:hover { background-color: rgba(254,242,242,0.5); }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-rose-50\/50:hover { background-color: rgba(255,241,242,0.5); }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-50\/80:hover { background-color: rgba(248,250,252,0.8); }
.hover\:bg-slate-900:hover { background-color: #0f172a; }
.hover\:bg-teal-700:hover { background-color: #0f766e; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:border-blue-400:hover { border-color: #60a5fa; }
.hover\:border-red-300:hover { border-color: #fca5a5; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 3px rgba(15,23,42,.1); }
.hover\:text-amber-700:hover { color: #b45309; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:text-emerald-800:hover { color: #065f46; }
.hover\:text-orange-700:hover { color: #c2410c; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:text-slate-800:hover { color: #1e293b; }
.hover\:underline:hover { text-decoration: underline; }
.inline { display: inline; }
.left-0 { left: 0; }
.max-h-32 { max-height: 8rem; }
.max-h-60 { max-height: 15rem; }
.max-h-64 { max-height: 16rem; }
.max-h-\[34vh\] { max-height: 34vh; }
.max-h-\[50vh\] { max-height: 50vh; }
.max-h-\[52vh\] { max-height: 52vh; }
.max-h-\[58vh\] { max-height: 58vh; }
.max-h-\[62vh\] { max-height: 62vh; }
.max-h-\[65vh\] { max-height: 65vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-h-\[92vh\] { max-height: 92vh; }
.max-h-\[94vh\] { max-height: 94vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-\[100px\] { max-width: 100px; }
.max-w-\[1200px\] { max-width: 1200px; }
.max-w-\[120px\] { max-width: 120px; }
.max-w-\[168px\] { max-width: 168px; }
.max-w-\[72px\] { max-width: 72px; }
.max-w-\[90px\] { max-width: 90px; }
.max-w-lg { max-width: 32rem; }
.max-w-xs { max-width: 20rem; }
.mb-0.5 { margin-bottom: 0.125rem; }
.mb-1.5 { margin-bottom: 0.375rem; }
@media (min-width:768px){.md\:col-span-2{grid-column:span 2/span 2}}
@media (min-width:768px){.md\:col-span-3{grid-column:span 3/span 3}}
@media (min-width:768px){.md\:col-span-4{grid-column:span 4/span 4}}
@media (min-width:768px){.md\:col-span-5{grid-column:span 5/span 5}}
@media (min-width:768px){.md\:col-span-7{grid-column:span 7/span 7}}
@media (min-width:768px){.md\:col-span-12{grid-column:span 12/span 12}}
@media (min-width:768px){.md\:flex-nowrap{flex-wrap:nowrap}}
@media (min-width:768px){.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}}
@media (min-width:768px){.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media (min-width:768px){.md\:inline{display:inline}}
@media (min-width:768px){.md\:w-48{width:12rem}}
@media (min-width:768px){.md\:w-auto{width:auto}}
.min-h-\[36px\] { min-height: 36px; }
.min-w-\[100px\] { min-width: 100px; }
.min-w-\[1100px\] { min-width: 1100px; }
.min-w-\[120px\] { min-width: 120px; }
.min-w-\[140px\] { min-width: 140px; }
.min-w-\[1480px\] { min-width: 1480px; }
.min-w-\[150px\] { min-width: 150px; }
.min-w-\[200px\] { min-width: 200px; }
.min-w-\[5rem\] { min-width: 5rem; }
.min-w-\[6rem\] { min-width: 6rem; }
.mt-0.5 { margin-top: 0.125rem; }
.mt-1.5 { margin-top: 0.375rem; }
.mt-8 { margin-top: 2rem; }
.mx-0.5 { margin-left:0.125rem;margin-right:0.125rem; }
.normal-case { text-transform: none; }
.overflow-auto { overflow: auto; }
.p-0 { padding: 0rem; }
.p-0.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1.5 { padding: 0.375rem; }
.p-2.5 { padding: 0.625rem; }
.pb-0 { padding-bottom: 0rem; }
.pb-32 { padding-bottom: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pl-1.5 { padding-left: 0.375rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-7 { padding-left: 1.75rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-5 { padding-right: 1.25rem; }
.pr-8 { padding-right: 2rem; }
.pt-3 { padding-top: 0.75rem; }
.px-0 { padding-left:0rem;padding-right:0rem; }
.px-1.5 { padding-left:0.375rem;padding-right:0.375rem; }
.px-2.5 { padding-left:0.625rem;padding-right:0.625rem; }
.px-8 { padding-left:2rem;padding-right:2rem; }
.py-0.5 { padding-top:0.125rem;padding-bottom:0.125rem; }
.py-1.5 { padding-top:0.375rem;padding-bottom:0.375rem; }
.py-2.5 { padding-top:0.625rem;padding-bottom:0.625rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.select-none { user-select: none; }
.shadow-inner { box-shadow: inset 0 2px 4px rgba(15,23,42,.06); }
@media (min-width:640px){.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:640px){.sm\:p-3{padding:0.75rem}}
.text-amber-800\/90 { color: rgba(146,64,14,0.9); }
.text-amber-900\/85 { color: #78350f; }
.text-blue-300\/70 { color: #93c5fd; }
.text-emerald-700 { color: #047857; }
.text-emerald-900 { color: #064e3b; }
.text-indigo-700 { color: #4338ca; }
.text-indigo-800 { color: #3730a3; }
.text-indigo-900 { color: #312e81; }
.text-rose-500 { color: #f43f5e; }
.text-rose-600 { color: #e11d48; }
.text-rose-700 { color: #be123c; }
.text-slate-900 { color: #0f172a; }
.text-teal-500 { color: #14b8a6; }
.text-teal-700 { color: #0f766e; }
.top-1\/2 { top: 50%; }
.top-3 { top: 0.75rem; }
.transform:not(.translate-y-full):not(.translate-y-0) { transform: translateZ(0); }
.translate-y-full { transform: translateY(100%); }
.translate-y-0 { transform: translateY(0); }
.w-28 { width: 7rem; }
.w-3.5 { width: 0.875rem; }
.w-36 { width: 9rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-\[100px\] { width: 100px; }
.w-\[104px\] { width: 104px; }
.w-\[124px\] { width: 124px; }
.w-\[142px\] { width: 142px; }
.w-\[200px\] { width: 200px; }
.w-\[22%\] { width: 22%; }
.w-\[220px\] { width: 220px; }
.w-\[40px\] { width: 40px; }
.w-\[45px\] { width: 45px; }
.w-\[56px\] { width: 56px; }
.w-\[58px\] { width: 58px; }
.w-\[60px\] { width: 60px; }
.w-\[64px\] { width: 64px; }
.w-\[76px\] { width: 76px; }
.w-\[84px\] { width: 84px; }
.w-\[88px\] { width: 88px; }
.w-\[92px\] { width: 92px; }
.w-\[96px\] { width: 96px; }
.whitespace-pre-wrap { white-space: pre-wrap; }
@media (min-width:1280px){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
.border-indigo-100 { border-color: #e0e7ff; }
.border-indigo-200 { border-color: #c7d2fe; }
.border-rose-200 { border-color: #fecdd3; }
.border-slate-700\/60 { border-color: rgba(51,65,85,0.6); }
.text-\[8px\] { font-size: 8px; }
.text-\[12px\] { font-size: 12px; }
.shadow-blue-900\/40 { box-shadow: 0 10px 15px -3px rgba(30,58,138,0.4); }
.active\:scale-95:active { transform: scale(0.95); }
.hover\:text-white:hover { color: #fff; }
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.125rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.z-\[100\] { z-index: 100; }
.z-\[110\] { z-index: 110; }
.z-\[120\] { z-index: 120; }
.z-\[125\] { z-index: 125; }
.z-\[60\] { z-index: 60; }
.z-\[70\] { z-index: 70; }
.z-\[80\] { z-index: 80; }
