:root {
    --panel-red: #ed1f2b;
    --panel-red-dark: #c91420;
    --panel-red-soft: #fff0f1;
    --panel-ink: #171a20;
    --panel-sidebar: #17191f;
    --panel-bg: #f6f7f9;
    --panel-line: #e5e7eb;
    --panel-muted: #6b7280;
    --panel-green: #159447;
    --panel-amber: #d97706;
    --panel-radius: 18px;
    --panel-font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; background: var(--panel-bg); }
body { margin: 0; color: #27303f; background: var(--panel-bg); font-family: var(--panel-font); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, [type="button"], [type="submit"] { cursor: pointer; }
img, svg { max-width: 100%; }
table { width: 100%; border-collapse: collapse; }

/* Panel shell */
.panel-layout { display: flex; height: 100vh; overflow: hidden; }
.panel-sidebar { width: 272px; flex: 0 0 272px; display: flex; flex-direction: column; color: #fff; background: var(--panel-sidebar); box-shadow: 18px 0 45px rgba(17, 24, 39, .08); z-index: 40; }
.panel-workspace { min-width: 0; flex: 1; display: flex; flex-direction: column; height: 100vh; overflow-y: auto; position: relative; }
.panel-topbar { min-height: 80px; flex: 0 0 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--panel-line); background: rgba(255, 255, 255, .9); backdrop-filter: blur(16px); }
.panel-topbar h2 { margin: 0; color: var(--panel-ink); font-size: 23px; font-weight: 800; letter-spacing: -.035em; }
.panel-content { width: 100%; max-width: 1536px; margin: 0 auto; padding: 32px; }
.panel-menu-button { display: none; width: 42px; height: 42px; margin-right: 12px; border: 1px solid var(--panel-line); border-radius: 12px; color: #525866; background: #fff; }
.panel-sidebar-backdrop { display: none; }

.panel-sidebar > div:first-child { min-height: 80px; }
.panel-sidebar nav a { position: relative; }
.panel-sidebar nav a[class*="bg-indigo"],
.panel-sidebar nav a[class*="text-indigo"] { color: #ff7a82 !important; border-color: rgba(237,31,43,.25) !important; background: rgba(237,31,43,.1) !important; }
.panel-sidebar nav a:hover { color: #fff; background: #242730; }
.panel-sidebar .bg-indigo-500, .panel-sidebar .bg-indigo-600 { background: var(--panel-red); }

/* Login */
.login-page { min-height: 100vh; display: grid; place-items: center; overflow: hidden; position: relative; padding: 28px 16px; background: radial-gradient(circle at 10% 10%, #fff0f1, transparent 34%), radial-gradient(circle at 90% 90%, #f3f4f6, transparent 35%), #f8f8f9; }
.login-page::before, .login-page::after { content: ""; width: 380px; height: 380px; position: fixed; border-radius: 50%; filter: blur(80px); opacity: .55; pointer-events: none; }
.login-page::before { top: -180px; left: -160px; background: #ffc4c8; }
.login-page::after { right: -180px; bottom: -200px; background: #d9dde4; }
.login-wrap { width: 100%; max-width: 450px; position: relative; z-index: 2; }
.login-home { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px 5px; color: #737985; font-size: 12px; font-weight: 700; }
.login-home:hover { color: var(--panel-red); }
.login-card { padding: 42px 40px 32px; border: 1px solid #e5e6e8; border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: 0 28px 70px rgba(25,29,36,.11); }
.login-brand { display: flex; flex-direction: column; align-items: center; margin-bottom: 30px; text-align: center; }
.login-logo { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; border-radius: 18px; background: linear-gradient(145deg, #f4303b, #cb111c); box-shadow: 0 15px 27px rgba(237,31,43,.24); font-size: 27px; }
.login-brand h1 { margin: 0; color: var(--panel-ink); font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.login-brand h1 span { color: var(--panel-red); }
.login-brand p { margin: 7px 0 0; color: #7b818c; font-size: 12px; }
.login-alert { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; padding: 13px 14px; color: #9f1720; border: 1px solid #ffd1d4; border-radius: 12px; background: #fff3f4; font-size: 12px; font-weight: 650; }
.login-field { margin-bottom: 18px; }
.login-field label { display: block; margin-bottom: 7px; color: #4c525d; font-size: 12px; font-weight: 700; }
.login-input { position: relative; }
.login-input i { position: absolute; left: 15px; top: 50%; color: #a2a7af; transform: translateY(-50%); }
.login-input input { width: 100%; height: 50px; padding: 0 15px 0 44px; border: 1px solid #dedfe3; border-radius: 13px; outline: none; color: #252a33; background: #fafafa; transition: .2s; }
.login-input input:focus { border-color: var(--panel-red); background: #fff; box-shadow: 0 0 0 4px rgba(237,31,43,.09); }
.login-submit { width: 100%; height: 52px; margin-top: 4px; border: 0; border-radius: 13px; color: #fff; background: var(--panel-red); box-shadow: 0 12px 24px rgba(237,31,43,.22); font-weight: 800; transition: .2s; }
.login-submit:hover { background: var(--panel-red-dark); transform: translateY(-1px); box-shadow: 0 15px 28px rgba(237,31,43,.27); }
.login-foot { margin: 26px 0 0; color: #a0a4ab; text-align: center; font-size: 10px; }

/* Existing panel pages use this small local utility layer during the component migration. */
.hidden { display: none; }.block { display: block; }.inline-block { display: inline-block; }.flex { display: flex; }.inline-flex { display: inline-flex; }.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }.shrink-0 { flex-shrink: 0; }.flex-col { flex-direction: column; }.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }.items-start { align-items: flex-start; }.items-end { align-items: flex-end; }
.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; }.sticky { position: sticky; }
.inset-0 { inset: 0; }.inset-y-0 { top: 0; bottom: 0; }.top-0 { top: 0; }.top-24 { top: 6rem; }.bottom-0 { bottom: 0; }.left-0 { left: 0; }.right-0 { right: 0; }
.z-10 { z-index: 10; }.z-20 { z-index: 20; }.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }.overflow-x-auto { overflow-x: auto; }.overflow-y-auto { overflow-y: auto; }
.pointer-events-none { pointer-events: none; }.cursor-pointer { cursor: pointer; }.cursor-text { cursor: text; }
.h-screen { height: 100vh; }.min-h-screen { min-height: 100vh; }.h-full { height: 100%; }
.h-1\.5 { height: .375rem; }.h-2 { height: .5rem; }.h-7 { height: 1.75rem; }.h-8 { height: 2rem; }.h-10 { height: 2.5rem; }.h-12 { height: 3rem; }.h-14 { height: 3.5rem; }.h-16 { height: 4rem; }.h-20 { height: 5rem; }.h-24 { height: 6rem; }.h-32 { height: 8rem; }.h-40 { height: 10rem; }.h-96 { height: 24rem; }
.w-full { width: 100%; }.w-1\/3 { width: 33.333%; }.w-1\/4 { width: 25%; }.w-1\.5 { width: .375rem; }.w-2 { width: .5rem; }.w-6 { width: 1.5rem; }.w-7 { width: 1.75rem; }.w-8 { width: 2rem; }.w-10 { width: 2.5rem; }.w-12 { width: 3rem; }.w-14 { width: 3.5rem; }.w-16 { width: 4rem; }.w-20 { width: 5rem; }.w-24 { width: 6rem; }.w-32 { width: 8rem; }.w-40 { width: 10rem; }.w-64 { width: 16rem; }.w-72 { width: 18rem; }.w-96 { width: 24rem; }
.max-w-xs { max-width: 20rem; }.max-w-md { max-width: 28rem; }.max-w-2xl { max-width: 42rem; }.max-w-3xl { max-width: 48rem; }.max-w-12xl { max-width: 96rem; }
.mx-auto { margin-left: auto; margin-right: auto; }.ml-1 { margin-left: .25rem; }.ml-2 { margin-left: .5rem; }.ml-3 { margin-left: .75rem; }.ml-4 { margin-left: 1rem; }.ml-6 { margin-left: 1.5rem; }.ml-16 { margin-left: 4rem; }
.mr-0\.5 { margin-right: .125rem; }.mr-1 { margin-right: .25rem; }.mr-1\.5 { margin-right: .375rem; }.mr-2 { margin-right: .5rem; }.mr-3 { margin-right: .75rem; }.mr-4 { margin-right: 1rem; }.mr-5 { margin-right: 1.25rem; }
.mt-0\.5 { margin-top: .125rem; }.mt-1 { margin-top: .25rem; }.mt-2 { margin-top: .5rem; }.mt-4 { margin-top: 1rem; }.mt-6 { margin-top: 1.5rem; }.mt-8 { margin-top: 2rem; }.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: .25rem; }.mb-1\.5 { margin-bottom: .375rem; }.mb-2 { margin-bottom: .5rem; }.mb-3 { margin-bottom: .75rem; }.mb-4 { margin-bottom: 1rem; }.mb-5 { margin-bottom: 1.25rem; }.mb-6 { margin-bottom: 1.5rem; }.mb-8 { margin-bottom: 2rem; }
.p-1 { padding: .25rem; }.p-2 { padding: .5rem; }.p-4 { padding: 1rem; }.p-5 { padding: 1.25rem; }.p-6 { padding: 1.5rem; }.p-8 { padding: 2rem; }.p-10 { padding: 2.5rem; }.p-16 { padding: 4rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }.px-2\.5 { padding-left: .625rem; padding-right: .625rem; }.px-3 { padding-left: .75rem; padding-right: .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; }.px-8 { padding-left: 2rem; padding-right: 2rem; }.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.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; }.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }.py-4 { padding-top: 1rem; padding-bottom: 1rem; }.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }.py-8 { padding-top: 2rem; padding-bottom: 2rem; }.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }.py-12 { padding-top: 3rem; padding-bottom: 3rem; }.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }.pl-4 { padding-left: 1rem; }.pl-6 { padding-left: 1.5rem; }.pl-11 { padding-left: 2.75rem; }.pr-4 { padding-right: 1rem; }
.gap-1 { gap: .25rem; }.gap-2 { gap: .5rem; }.gap-3 { gap: .75rem; }.gap-4 { gap: 1rem; }.gap-6 { gap: 1.5rem; }.gap-8 { gap: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: .5rem; }.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: .5rem; }
.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; }.rounded-2xl { border-radius: 1rem; }.rounded-3xl { border-radius: 1.5rem; }.rounded-full { border-radius: 9999px; }.rounded-r-lg { border-radius: 0 .5rem .5rem 0; }
.border { border: 1px solid var(--panel-line); }.border-0 { border-width: 0; }.border-b { border-bottom: 1px solid var(--panel-line); }.border-t { border-top: 1px solid var(--panel-line); }.border-l { border-left: 1px solid var(--panel-line); }.border-l-4 { border-left-width: 4px; }.border-dashed { border-style: dashed; }
.border-gray-100, .border-slate-100, .border-slate-50 { border-color: #f0f1f3; }.border-gray-200, .border-slate-200 { border-color: #e2e4e8; }.border-gray-800, .border-slate-800 { border-color: #2a2d35; }.border-slate-700\/50 { border-color: rgba(51,65,85,.5); }
.border-indigo-100, .border-indigo-100\/50 { border-color: #ffd9dc; }.border-indigo-500\/20, .border-indigo-500\/30 { border-color: rgba(237,31,43,.25); }.border-red-500 { border-color: var(--panel-red); }.border-red-400\/20, .border-rose-400\/20 { border-color: rgba(244,63,94,.25); }.border-rose-100, .border-rose-200 { border-color: #ffe4e6; }.border-emerald-100 { border-color: #d1fae5; }.border-amber-100 { border-color: #fef3c7; }.border-orange-100 { border-color: #ffedd5; }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top: 1px solid; }.divide-gray-100 > :not([hidden]) ~ :not([hidden]), .divide-slate-50 > :not([hidden]) ~ :not([hidden]) { border-color: #f1f2f4; }

.bg-white { background-color: #fff; }.bg-transparent { background-color: transparent; }.bg-gray-50, .bg-slate-50 { background-color: #f8f9fa; }.bg-gray-50\/50, .bg-slate-50\/50 { background-color: rgba(248,249,250,.5); }.bg-gray-100, .bg-slate-100 { background-color: #f1f3f5; }.bg-gray-800 { background-color: #252830; }.bg-gray-900, .bg-slate-900 { background-color: var(--panel-sidebar); }.bg-slate-800\/50 { background-color: rgba(30,41,59,.5); }.bg-slate-900\/60 { background-color: rgba(15,23,42,.6); }.bg-slate-950\/50 { background-color: rgba(2,6,23,.5); }.bg-white\/80 { background-color: rgba(255,255,255,.88); }
.bg-indigo-50, .bg-indigo-50\/50, .bg-indigo-100, .bg-indigo-200 { background-color: var(--panel-red-soft); }.bg-indigo-500, .bg-indigo-600 { background-color: var(--panel-red); }.bg-indigo-500\/20, .bg-indigo-500\/10, .bg-indigo-600\/10 { background-color: rgba(237,31,43,.1); }
.bg-red-50, .bg-rose-50 { background-color: #fff1f2; }.bg-red-400\/10, .bg-rose-400\/10 { background-color: rgba(244,63,94,.1); }.bg-rose-100, .bg-rose-200 { background-color: #ffe4e6; }.bg-rose-500, .bg-rose-600 { background-color: #e11d48; }
.bg-emerald-50 { background-color: #ecfdf5; }.bg-emerald-100 { background-color: #d1fae5; }.bg-emerald-500 { background-color: #10b981; }.bg-amber-50 { background-color: #fffbeb; }.bg-amber-100 { background-color: #fef3c7; }.bg-orange-50 { background-color: #fff7ed; }.bg-orange-500 { background-color: #f97316; }
.bg-green-100 { background-color: #dcfce7; }.bg-green-600 { background-color: #16a34a; }.bg-blue-100 { background-color: #dbeafe; }
.bg-gradient-to-r, .bg-gradient-to-l { background-image: linear-gradient(120deg, var(--panel-red), #a70d17); }.from-indigo-600 { --tw-gradient-from: var(--panel-red); }.to-indigo-800 { --tw-gradient-to: #a70d17; }.to-transparent { --tw-gradient-to: transparent; }

.text-left { text-align: left; }.text-center { text-align: center; }.text-right { text-align: right; }.whitespace-nowrap { white-space: nowrap; }.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-\[9px\] { font-size: 9px; }.text-\[10px\] { font-size: 10px; }.text-\[11px\] { font-size: 11px; }.text-xs { font-size: .75rem; }.text-sm { font-size: .875rem; }.text-base { font-size: 1rem; }.text-lg { font-size: 1.125rem; }.text-xl { font-size: 1.25rem; }.text-2xl { font-size: 1.5rem; }.text-3xl { font-size: 1.875rem; }.text-4xl { font-size: 2.25rem; }.text-8xl { font-size: 6rem; }.text-9xl { font-size: 8rem; }
.font-medium { font-weight: 500; }.font-semibold { font-weight: 600; }.font-bold { font-weight: 700; }.font-black { font-weight: 800; }.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.uppercase { text-transform: uppercase; }.italic { font-style: italic; }.line-through { text-decoration: line-through; }
.tracking-tight { letter-spacing: -.025em; }.tracking-tighter { letter-spacing: -.05em; }.tracking-wide { letter-spacing: .025em; }.tracking-wider { letter-spacing: .05em; }.tracking-widest { letter-spacing: .1em; }.leading-none { line-height: 1; }.leading-tight { line-height: 1.25; }.leading-relaxed { line-height: 1.625; }
.text-white { color: #fff; }.text-gray-900, .text-slate-800 { color: #1c2028; }.text-gray-800, .text-slate-700 { color: #343b47; }.text-gray-700, .text-slate-600 { color: #515967; }.text-gray-600, .text-slate-500 { color: #697180; }.text-gray-500, .text-slate-400 { color: #8a919e; }.text-gray-400, .text-slate-300 { color: #a6acb5; }
.text-indigo-400, .text-indigo-500, .text-indigo-600 { color: var(--panel-red); }.text-red-400, .text-red-500, .text-red-600, .text-red-700 { color: #dc2632; }.text-rose-400, .text-rose-500, .text-rose-600, .text-rose-700, .text-rose-800 { color: #e11d48; }.text-emerald-500, .text-emerald-600, .text-emerald-700, .text-emerald-900, .text-green-700 { color: #128047; }.text-amber-500, .text-amber-600, .text-amber-700 { color: #c66c07; }.text-orange-600, .text-orange-700 { color: #c55a0a; }.text-blue-500 { color: #2878cf; }
.text-green-600 { color: #168142; }.text-blue-700 { color: #1d4f91; }
.border-green-200 { border-color: #bbf7d0; }.border-green-500 { border-color: #22c55e; }.border-blue-500 { border-color: #3b82f6; }

.shadow-sm { box-shadow: 0 2px 6px rgba(15,23,42,.05); }.shadow-md { box-shadow: 0 7px 18px rgba(15,23,42,.08); }.shadow-lg { box-shadow: 0 12px 28px rgba(15,23,42,.1); }.shadow-xl { box-shadow: 0 20px 45px rgba(15,23,42,.12); }.shadow-2xl { box-shadow: 0 28px 60px rgba(15,23,42,.15); }.shadow-inner { box-shadow: inset 0 2px 4px rgba(15,23,42,.08); }
.shadow-indigo-100, .shadow-indigo-200, .shadow-indigo-500\/20, .shadow-indigo-500\/30 { --panel-shadow-color: rgba(237,31,43,.18); box-shadow: 0 12px 28px var(--panel-shadow-color); }.shadow-rose-200, .shadow-rose-500\/50 { box-shadow: 0 10px 25px rgba(225,29,72,.16); }.shadow-emerald-200, .shadow-green-200 { box-shadow: 0 10px 25px rgba(16,185,129,.14); }.shadow-orange-200 { box-shadow: 0 10px 25px rgba(249,115,22,.14); }.shadow-slate-200 { box-shadow: 0 10px 25px rgba(100,116,139,.13); }
.opacity-5 { opacity: .05; }.opacity-40 { opacity: .4; }.opacity-50 { opacity: .5; }.opacity-70 { opacity: .7; }.opacity-90 { opacity: .9; }
.transition, .transition-all { transition: all .2s ease; }.transition-colors { transition: color .2s, background-color .2s, border-color .2s; }.transition-opacity { transition: opacity .2s; }.transition-transform { transition: transform .2s; }.duration-300 { transition-duration: .3s; }.duration-500 { transition-duration: .5s; }
.transform { transform: translateZ(0); }.rotate-3 { transform: rotate(3deg); }.blur-3xl { filter: blur(64px); }.grayscale { filter: grayscale(1); }.mix-blend-multiply { mix-blend-mode: multiply; }
.backdrop-blur-md, .backdrop-blur-sm { backdrop-filter: blur(14px); }
.appearance-none { appearance: none; }.outline-none, .focus\:outline-none:focus { outline: none; }
.animate-pulse { animation: panel-pulse 1.8s ease-in-out infinite; }.animate-ping { animation: panel-ping 1.3s cubic-bezier(0,0,.2,1) infinite; }
@keyframes panel-pulse { 50% { opacity: .5; } } @keyframes panel-ping { 75%,100% { transform: scale(2); opacity:0; } }

input, select, textarea { border-color: #dfe2e7; }
input::placeholder, textarea::placeholder, .placeholder\:text-slate-300::placeholder { color: #b9bec7; }
.focus\:border-indigo-500:focus { border-color: var(--panel-red); }.focus\:ring-2:focus { box-shadow: 0 0 0 4px rgba(237,31,43,.09); }.focus\:ring-indigo-500:focus { --focus-color: var(--panel-red); }.focus\:ring-emerald-500:focus { box-shadow: 0 0 0 4px rgba(16,185,129,.1); }.focus\:bg-white:focus { background: #fff; }
.group:focus-within .group-focus-within\:text-indigo-500 { color: var(--panel-red); }.group:hover .group-hover\:scale-110 { transform: scale(1.1); }.group:hover .group-hover\:text-indigo-400, .group:hover .group-hover\:text-indigo-600 { color: var(--panel-red); }
.hover\:bg-gray-50:hover, .hover\:bg-slate-50:hover, .hover\:bg-slate-50\/50:hover, .hover\:bg-slate-50\/80:hover { background: #f8f9fa; }.hover\:bg-gray-200:hover, .hover\:bg-slate-200:hover { background: #e5e7eb; }.hover\:bg-gray-800:hover, .hover\:bg-slate-800:hover { background: #292c34; }.hover\:bg-indigo-50:hover, .hover\:bg-indigo-50\/30:hover { background: #fff0f1; }.hover\:bg-indigo-400:hover, .hover\:bg-indigo-500:hover, .hover\:bg-indigo-600:hover, .hover\:bg-indigo-700:hover { background: var(--panel-red-dark); }.hover\:bg-red-500:hover, .hover\:bg-rose-500:hover, .hover\:bg-rose-600:hover { background: #be123c; }.hover\:bg-rose-50:hover, .hover\:bg-rose-100:hover { background: #ffe4e6; }.hover\:bg-emerald-50:hover, .hover\:bg-emerald-100:hover { background: #d1fae5; }.hover\:bg-emerald-600:hover { background: #059669; }.hover\:bg-amber-50:hover { background: #fffbeb; }
.hover\:text-white:hover { color: #fff; }.hover\:text-indigo-600:hover { color: var(--panel-red); }.hover\:text-red-600:hover, .hover\:text-rose-500:hover { color: #d51f2b; }.hover\:text-amber-600:hover { color: #b45309; }.hover\:text-blue-700:hover { color: #1d4f91; }.hover\:text-slate-700:hover { color: #334155; }
.hover\:border-indigo-200:hover { border-color: #ffbfc4; }.hover\:border-amber-200:hover { border-color: #fde68a; }.hover\:border-emerald-200:hover { border-color: #a7f3d0; }
.hover\:-translate-y-0\.5:hover { transform: translateY(-.125rem); }.hover\:-translate-y-1:hover { transform: translateY(-.25rem); }.hover\:scale-105:hover { transform: scale(1.05); }.active\:scale-95:active { transform: scale(.95); }

input[type="file"]::file-selector-button { border: 0; margin-right: .75rem; padding: .375rem .75rem; border-radius: 9999px; color: var(--panel-red); background: #20232a; font-size: 10px; font-weight: 800; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }.sm\:items-center { align-items: center; }.sm\:mb-0 { margin-bottom: 0; }.sm\:mr-6 { margin-right: 1.5rem; }.sm\:p-10 { padding: 2.5rem; }
}
@media (min-width: 768px) {
    .md\:flex { display: flex; }.md\:hidden { display: none; }.md\:flex-row { flex-direction: row; }.md\:items-center { align-items: center; }.md\:mb-0 { margin-bottom: 0; }.md\:grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }.md\:grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }.md\:grid-cols-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }.md\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (min-width: 1024px) {
    .lg\:block { display: block; }.lg\:grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }.lg\:col-span-1 { grid-column: span 1 / span 1; }.lg\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (max-width: 767px) {
    .panel-sidebar { position: fixed; inset: 0 auto 0 0; width: min(290px, 86vw); transform: translateX(-102%); transition: transform .25s ease; }
    .panel-body.sidebar-open .panel-sidebar { transform: none; }
    .panel-sidebar-backdrop { position: fixed; inset: 0; z-index: 35; border: 0; background: rgba(10,13,18,.55); }
    .panel-body.sidebar-open .panel-sidebar-backdrop { display: block; }
    .panel-menu-button { display: inline-grid; place-items: center; }
    .panel-topbar { min-height: 68px; flex-basis: 68px; padding: 0 16px; }
    .panel-topbar h2 { font-size: 18px; }
    .panel-content { padding: 20px 14px 36px; }
    .login-card { padding: 34px 24px 27px; }
    .w-72, .w-96 { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
