* { box-sizing: border-box; }
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.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; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-20 { width: 5rem; }
.w-72 { width: 18rem; }
.w-44 { width: 11rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-\[5\.5rem\] { max-width: 5.5rem; }
.max-h-80 { max-height: 20rem; }
.max-h-96 { max-height: 24rem; }
.max-h-\[calc\(100vh-2rem\)\] { max-height: calc(100vh - 2rem); }
.min-w-0 { min-width: 0; }
.list-none { list-style: none; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }
.resize-y { resize: vertical; }
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: .25rem; }
.ml-auto { margin-left: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-2\.5 { margin-top: .625rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.p-1\.5 { padding: .375rem; }
.p-2\.5 { padding: .625rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-1\.5 { padding-left: .375rem; padding-right: .375rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-0\.5 { padding-top: .125rem; padding-bottom: .125rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.pl-2\.5 { padding-left: .625rem; }
.pr-2 { padding-right: .5rem; }
.pt-2 { padding-top: .5rem; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-x-2 { column-gap: .5rem; }
.gap-y-1 { row-gap: .25rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: .25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: .375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: .5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: .75rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.border { border: 1px solid #d1d5db; }
.border-b { border-bottom: 1px solid #d1d5db; }
.border-r { border-right: 1px solid #d1d5db; }
.border-l-2 { border-left: 2px solid #d1d5db; }
.border-dashed { border-style: dashed; }
.bg-white { background: #fff; }
.bg-white\/80 { background: rgba(255,255,255,.8); }
.bg-slate-50 { background: #f8fafc; }
.bg-slate-100 { background: #f1f5f9; }
.bg-slate-900 { background: #0f172a; }
.bg-green-50 { background: #f0fdf4; }
.bg-red-50 { background: #fef2f2; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .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-\[10px\] { font-size: 10px; }
.text-white { color: #fff; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-green-700 { color: #15803d; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-\[var\(--primary\)\] { color: var(--primary); }
.text-\[var\(--text-muted\)\] { color: var(--text-muted); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-none { line-height: 1; }
.leading-6 { line-height: 1.5rem; }
.tracking-wide { letter-spacing: .025em; }
.uppercase { text-transform: uppercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.object-contain { object-fit: contain; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.shadow-md { box-shadow: 0 4px 10px rgba(0,0,0,.08); }
.shadow-lg { box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.opacity-80 { opacity: .8; }
.transition-transform { transition: transform .2s ease; }
.duration-200 { transition-duration: .2s; }
.-translate-x-full { transform: translateX(-100%); }
.border-\[var\(--border\)\] { border-color: var(--border); }
.hover\:underline:hover { text-decoration: underline; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-slate-500:focus { border-color: #64748b; }
.hover\:bg-slate-700:hover { background: #334155; }

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:static { position: static; }
  .md\:ml-auto { margin-left: auto; }
  .md\:w-52 { width: 13rem; }
  .md\:w-auto { width: auto; }
  .md\:z-auto { z-index: auto; }
  .md\:max-w-none { max-width: none; }
  .md\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:p-3 { padding: .75rem; }
  .md\:px-3 { padding-left: .75rem; padding-right: .75rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
  .md\:py-3 { padding-top: .75rem; padding-bottom: .75rem; }
  .md\:translate-x-0 { transform: translateX(0); }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:flex-row { flex-direction: row; }
  .md\:gap-2 { gap: .5rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:col-start-2 { grid-column-start: 2; }
  .md\:grid-cols-\[280px_minmax\(0\,1fr\)\] { grid-template-columns: 280px minmax(0,1fr); }
}
