/* ============================================================
   livehouse.css — Concert Stage Aesthetic
   Used by: viewlivehouse.php
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ──────────────────────────────────────────────── */
body {
	background: #07070d;
	min-height: 100vh;
	color: #ddd6fe;
	overflow-x: hidden;
	padding-bottom: 4rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.5;
}

/* ── Rainbow top stripe ────────────────────────────────── */
.stage-stripe {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b, #38bdf8, #ec4899, #7c3aed);
	background-size: 300% 100%;
	animation: stripe-run 5s linear infinite;
	z-index: 9999;
}
@keyframes stripe-run { to { background-position: -300% 0; } }

/* ── Background ────────────────────────────────────────── */
.bg-mesh {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Spotlight beams */
.bg-mesh::before,
.bg-mesh::after {
	content: '';
	position: absolute;
	top: -80px;
	width: 220px;
	height: 100vh;
	clip-path: polygon(28% 0%, 72% 0%, 100% 100%, 0% 100%);
	opacity: 0.9;
}
.bg-mesh::before {
	left: 22%;
	background: linear-gradient(180deg, rgba(124,58,237,0.22) 0%, transparent 62%);
	animation: beam1 9s ease-in-out infinite alternate;
}
.bg-mesh::after {
	left: 55%;
	background: linear-gradient(180deg, rgba(236,72,153,0.2) 0%, transparent 58%);
	animation: beam2 11s ease-in-out infinite alternate;
}
@keyframes beam1 { from { transform: rotate(-7deg); } to { transform: rotate(7deg); } }
@keyframes beam2 { from { transform: rotate(5deg);  } to { transform: rotate(-8deg); } }

/* Glowing orbs */
.orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.orb-1 {
	width: 720px; height: 720px;
	background: radial-gradient(circle at center, rgba(124,58,237,0.28), transparent 68%);
	top: -260px; left: -200px;
	animation: orb-f 15s ease-in-out infinite alternate;
}
.orb-2 {
	width: 580px; height: 580px;
	background: radial-gradient(circle at center, rgba(236,72,153,0.22), transparent 68%);
	bottom: -180px; right: -160px;
	animation: orb-r 18s ease-in-out infinite alternate;
}
.orb-3 {
	width: 440px; height: 440px;
	background: radial-gradient(circle at center, rgba(6,182,212,0.14), transparent 68%);
	top: 38%; left: 55%;
	animation: orb-f 13s ease-in-out infinite alternate;
}
.orb-4 {
	width: 320px; height: 320px;
	background: radial-gradient(circle at center, rgba(245,158,11,0.1), transparent 68%);
	top: 16%; right: 7%;
	animation: orb-r 10s ease-in-out infinite alternate;
}
@keyframes orb-f { from { transform: translate(0,0); } to { transform: translate(44px,30px); } }
@keyframes orb-r { from { transform: translate(0,0); } to { transform: translate(-36px,-24px); } }

/* Dot-grid */
.bg-grid {
	position: fixed;
	inset: 0; z-index: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(167,139,250,0.055) 1px, transparent 1px);
	background-size: 28px 28px;
}

/* Equalizer bars — decorative */
.eq-bars {
	position: fixed;
	bottom: 2.2rem;
	left: 1.6rem;
	display: flex;
	align-items: flex-end;
	gap: 4px;
	z-index: 0;
	opacity: 0.18;
	pointer-events: none;
}
.eq-bar {
	width: 4px;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, #ec4899, #7c3aed);
	animation: eq-bounce var(--d, 0.8s) ease-in-out infinite alternate;
	transform-origin: bottom;
}
.eq-bar:nth-child(1) { --d: 0.7s; height: 18px; }
.eq-bar:nth-child(2) { --d: 0.5s; height: 28px; }
.eq-bar:nth-child(3) { --d: 0.9s; height: 14px; }
.eq-bar:nth-child(4) { --d: 0.6s; height: 34px; }
.eq-bar:nth-child(5) { --d: 0.4s; height: 22px; }
.eq-bar:nth-child(6) { --d: 0.75s; height: 30px; }
.eq-bar:nth-child(7) { --d: 0.55s; height: 16px; }
@keyframes eq-bounce { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

/* ── Content layer ─────────────────────────────────────── */
.content-wrap { position: relative; z-index: 1; }

/* ── Animations ────────────────────────────────────────── */
@keyframes shimmer  { to { background-position: 200% center; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes fade-up  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes icon-glow { 0%,100% { filter: drop-shadow(0 0 10px rgba(236,72,153,0.5)); } 50% { filter: drop-shadow(0 0 28px rgba(236,72,153,0.9)) drop-shadow(0 0 50px rgba(124,58,237,0.5)); } }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
	background: rgba(7,7,13,0.88) !important;
	backdrop-filter: blur(22px) !important;
	-webkit-backdrop-filter: blur(22px) !important;
	border-bottom: 1px solid rgba(167,139,250,0.13) !important;
	padding: 0.9rem 1.5rem !important;
	box-shadow: 0 2px 28px rgba(0,0,0,0.6) !important;
}
.navbar .nav-link {
	color: #a78bfa !important;
	font-weight: 600 !important;
	font-size: 0.88rem !important;
	padding: 0.42rem 0.95rem !important;
	border-radius: 8px !important;
	transition: all 0.2s !important;
}
.navbar .nav-link:hover {
	background: rgba(167,139,250,0.12) !important;
	color: #ede9fe !important;
}
.navbar-toggler { border-color: rgba(167,139,250,0.3) !important; }
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(167,139,250,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	margin-right: 0.6rem;
	min-width: 0;
}

.navbar-logo-img {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	box-shadow: 0 4px 16px rgba(124,58,237,0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-brand-logo:hover .navbar-logo-img {
	transform: scale(1.05);
	box-shadow: 0 6px 24px rgba(236,72,153,0.4);
}
.brand-name {
	display: inline-block;
	font-size: 0.97rem;
	font-weight: 800;
	background: linear-gradient(125deg, #c4b5fd 0%, #e879f9 60%, #f9a8d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.01em;
	white-space: nowrap;
	max-width: min(58vw, 360px);
	overflow: hidden;
	text-overflow: ellipsis;
}

.events-menu {
	border: 1px solid rgba(167,139,250,0.28) !important;
	background: rgba(18,14,31,0.96) !important;
	border-radius: 12px !important;
	box-shadow: 0 14px 30px rgba(2,1,8,0.55) !important;
	padding: 0.35rem !important;
}

.events-menu .dropdown-item {
	color: #c4b5fd;
	font-size: 0.86rem;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.48rem 0.7rem;
}

.events-menu .dropdown-item:hover,
.events-menu .dropdown-item:focus {
	background: rgba(167,139,250,0.18);
	color: #f5d0fe;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
	padding: 4.5rem 0 2rem;
	text-align: center;
	animation: fade-up 0.7s ease both;
}

.hero-icon {
	display: block;
	font-size: 4rem;
	line-height: 1;
	margin-bottom: 1.1rem;
	animation: icon-glow 3s ease-in-out infinite;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(236,72,153,0.1);
	border: 1px solid rgba(236,72,153,0.32);
	border-radius: 100px;
	padding: 0.32rem 1.1rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f472b6;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	margin-bottom: 1.4rem;
}

.hero h1 {
	font-size: clamp(2.2rem, 7vw, 4.1rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin-bottom: 0.8rem;
	background: linear-gradient(135deg, #f9a8d4 0%, #c084fc 35%, #818cf8 65%, #38bdf8 100%);
	background-size: 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 6s linear infinite;
}

.hero p {
	color: #4a4a62;
	font-size: 1rem;
	line-height: 1.75;
	max-width: 560px;
	margin: 0 auto;
}

/* ── Divider ───────────────────────────────────────────── */
.hero-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin: 2rem auto 2.5rem;
	max-width: 280px;
	color: rgba(167,139,250,0.3);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.hero-divider::before,
.hero-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(167,139,250,0.28));
}
.hero-divider::after {
	background: linear-gradient(90deg, rgba(167,139,250,0.28), transparent);
}

/* ── Toolbar ───────────────────────────────────────────── */
.toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 0.75rem;
}

.search-field {
	position: relative;
	flex: 1;
	min-width: 200px;
	max-width: 290px;
}

.toolbar .search-field.bigo-field {
	flex: 1;
	min-width: 200px;
	max-width: 290px;
}

.toolbar .search-field.date-field {
	flex: 1;
	min-width: 200px;
	max-width: 290px;
}
.search-field .field-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #7c3aed;
	font-size: 0.88rem;
	pointer-events: none;
	z-index: 2;
}
.search-field .field-clear {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #3a3a50;
	cursor: pointer;
	display: none;
	z-index: 2;
	padding: 0;
	font-size: 0.88rem;
	transition: color 0.2s;
}
.search-field .field-clear:hover { color: #f472b6; }
.search-field input {
	width: 100%;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(124,58,237,0.25);
	border-radius: 12px;
	color: #ddd6fe;
	font-size: 0.88rem;
	font-weight: 500;
	padding: 0.72rem 2.6rem 0.72rem 2.6rem;
	outline: none;
	transition: all 0.25s;
	font-family: inherit;
}
.search-field input::placeholder { color: #2e2e42; }
.search-field input:focus {
	border-color: rgba(167,139,250,0.55);
	background: rgba(124,58,237,0.08);
	box-shadow: 0 0 0 3px rgba(124,58,237,0.14);
}
.search-field input[type="date"] {
	color-scheme: dark;
	appearance: none;
	-webkit-appearance: none;
	line-height: 1.2;
	height: 44px;
}

.search-field input[type="date"]::-webkit-datetime-edit,
.search-field input[type="date"]::-webkit-datetime-edit-text,
.search-field input[type="date"]::-webkit-datetime-edit-month-field,
.search-field input[type="date"]::-webkit-datetime-edit-day-field,
.search-field input[type="date"]::-webkit-datetime-edit-year-field {
	color: #ddd6fe;
	padding: 0;
}

.search-field input[type="date"]:invalid::-webkit-datetime-edit {
	color: #7b7b9d;
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0.85;
	cursor: pointer;
	filter: invert(84%) sepia(16%) saturate(421%) hue-rotate(205deg) brightness(98%) contrast(96%);
}

.result-count { font-size: 0.77rem; color: #3a3a50; margin-bottom: 0.75rem; }
.result-count span { color: #f472b6; font-weight: 700; }

.refresh-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-left: auto;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(124,58,237,0.2);
	border-radius: 100px;
	padding: 0.5rem 1.1rem;
	font-size: 0.77rem;
	font-weight: 500;
	color: #3a3a50;
}
.refresh-pill i { color: #7c3aed; animation: spin 3s linear infinite; }
#countdown { color: #c084fc; font-weight: 700; }

/* ── Table card ────────────────────────────────────────── */
.pk-card {
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(124,58,237,0.18);
	border-radius: 22px;
	overflow: clip;
	box-shadow:
		0 0 0 1px rgba(124,58,237,0.07),
		0 8px 48px rgba(0,0,0,0.6),
		inset 0 1px 0 rgba(167,139,250,0.07);
	animation: fade-up 0.6s ease 0.15s both;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.pk-card .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Table ─────────────────────────────────────────────── */
.table {
	table-layout: auto;
	width: 100%;
	min-width: 560px;
	--bs-table-bg: transparent;
	--bs-table-color: inherit;
	--bs-table-border-color: transparent;
	--bs-table-striped-bg: transparent;
	--bs-table-hover-bg: transparent;
	margin: 0;
	border-collapse: collapse;
}
.table thead tr {
	background: linear-gradient(90deg, rgba(124,58,237,0.14), rgba(236,72,153,0.08), rgba(124,58,237,0.14));
}
.table thead th {
	background: transparent;
	color: #7c3aed;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	border: none;
	border-bottom: 1px solid rgba(124,58,237,0.16);
	padding: 1rem 1.1rem;
	font-weight: 800;
	white-space: nowrap;
}
.table tbody tr {
	border-bottom: 1px solid rgba(255,255,255,0.035);
	transition: background 0.18s;
}
.table tbody tr:last-child { border-bottom: none; }
.table tbody tr:hover { background: rgba(124,58,237,0.07); }
.table tbody td {
	padding: 0.92rem 1.1rem;
	vertical-align: middle;
	font-size: 0.85rem;
	color: #7b7b9d;
	border: none;
}

/* Add a little leading space before the first column (Date) */
.table thead th:first-child,
.table tbody td:first-child {
	padding-left: 30px;
}

/* ── Today row ─────────────────────────────────────────── */
.row-today { background: rgba(236,72,153,0.06) !important; border-left: 3px solid #ec4899; }
.row-today td { color: #f9a8d4 !important; }
.row-today:hover { background: rgba(236,72,153,0.1) !important; }

.today-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ec4899, #a855f7);
	color: #fff;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.16em 0.6em;
	border-radius: 100px;
	margin-left: 0.5rem;
	vertical-align: middle;
	box-shadow: 0 2px 12px rgba(236,72,153,0.5);
}

/* ── Cell types ────────────────────────────────────────── */
.bigo-cell { font-weight: 700; color: #c4b5fd; display: inline-flex; align-items: center; gap: 0.35rem; }
.bigo-cell i { color: #7c3aed; font-size: 0.75rem; }
.date-cell { font-weight: 600; color: #e2e0ff; white-space: nowrap; }
.time-cell {
	display: inline-flex; align-items: center; gap: 0.35rem;
	color: #38bdf8; font-weight: 600; font-size: 0.8rem;
	font-variant-numeric: tabular-nums;
	background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.22);
	padding: 0.3em 0.7em; border-radius: 8px;
}
.time-cell i { font-size: 0.7rem; }

/* ── Event chips ───────────────────────────────────────── */
.lh-chip { display: inline-flex; align-items: center; gap: 0.35em; padding: 0.34em 0.9em; border-radius: 8px; font-size: 0.76rem; font-weight: 600; }
.lh-concert  { background: rgba(236,72,153,0.14); color: #fb7bb8; border: 1.5px solid rgba(236,72,153,0.32); }
.lh-special  { background: rgba(245,158,11,0.11); color: #fbbf24; border: 1.5px solid rgba(245,158,11,0.28); }
.lh-birthday { background: rgba(167,139,250,0.12); color: #c4b5fd; border: 1.5px solid rgba(167,139,250,0.28); }
.lh-collab   { background: rgba(56,189,248,0.09); color: #38bdf8; border: 1.5px solid rgba(56,189,248,0.24); }
.lh-default  { background: rgba(255,255,255,0.04); color: #7b7b9d; border: 1.5px solid rgba(255,255,255,0.09); }

/* ── Column widths ─────────────────────────────────────── */
.col-date            { min-width: 200px; white-space: nowrap; }
.col-time            { min-width: 180px; white-space: nowrap; }
.col-bigo_id         { min-width: 200px; }
.col-livehouse_event { min-width: 240px; }
.col-beans_reward    { min-width: 180px; white-space: nowrap; }
.col-status          { min-width: 100px; white-space: nowrap; }

/* ── Status badges ─────────────────────────────────────── */
.badge-status { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.34em 0.88em; border-radius: 100px; font-size: 0.73rem; font-weight: 600; }
.badge-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.badge-confirmed { background: rgba(16,185,129,0.11); color: #34d399; border: 1px solid rgba(52,211,153,0.28); }
.badge-confirmed::before { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.7); }
.badge-pending   { background: rgba(245,158,11,0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.26); }
.badge-pending::before   { background: #f59e0b; }
.badge-cancelled { background: rgba(239,68,68,0.1);   color: #f87171; border: 1px solid rgba(248,113,113,0.26); }
.badge-cancelled::before { background: #ef4444; }
.badge-encoded   { background: rgba(56,189,248,0.1);  color: #38bdf8; border: 1px solid rgba(56,189,248,0.24); }
.badge-encoded::before   { background: #0ea5e9; box-shadow: 0 0 6px rgba(14,165,233,0.7); }
.badge-empty     { background: rgba(255,255,255,0.03); color: #3a3a50; border: 1px solid rgba(255,255,255,0.07); }
.badge-empty::before     { background: #2e2e42; }

.mobile-col-label {
	display: none;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #7c3aed;
	margin-bottom: 0.35rem;
}

/* ── Empty state ───────────────────────────────────────── */
.empty-state { padding: 5rem 2rem; text-align: center; }
.empty-state-icon {
	width: 72px; height: 72px;
	border-radius: 18px;
	background: rgba(124,58,237,0.08);
	border: 1px solid rgba(124,58,237,0.2);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1.4rem;
	font-size: 2rem; color: #7c3aed;
	filter: drop-shadow(0 0 14px rgba(124,58,237,0.4));
}
.empty-state h4 { font-size: 1.05rem; font-weight: 700; color: #e2e0ff; margin-bottom: 0.4rem; }
.empty-state p  { font-size: 0.85rem; color: #3a3a50; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.3); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: rgba(236,72,153,0.5); }
tr.search-hidden { display: none; }

/* ── Footer ────────────────────────────────────────────── */
footer {
	text-align: center;
	padding: 2.5rem 1rem;
	border-top: 1px solid rgba(124,58,237,0.1);
	color: #2e2e42;
	font-size: 0.8rem;
	margin-top: 2rem;
}
.social-links { display: flex; justify-content: center; gap: 0.65rem; margin-bottom: 1rem; }
.social-links a {
	width: 38px; height: 38px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1rem;
	border: 1px solid rgba(124,58,237,0.16);
	color: #3a3a50; text-decoration: none; transition: all 0.22s;
	background: rgba(255,255,255,0.03);
}
.social-links a:hover {
	background: rgba(236,72,153,0.12); color: #f472b6;
	border-color: rgba(236,72,153,0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 18px rgba(236,72,153,0.2);
}
footer span { color: #a78bfa; font-weight: 600; }

/* ── Container ─────────────────────────────────────────── */
@media (min-width: 576px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 820px; } }
@media (min-width: 992px)  { .container { max-width: 1060px; } }
@media (min-width: 1200px) { .container { max-width: 1240px; } }
@media (min-width: 1400px) { .container { max-width: 1420px; } }

/* ── Mobile card layout ────────────────────────────────── */
@media (max-width: 768px) {
	.table { table-layout: auto; min-width: 0; }
	.col-date, .col-time, .col-bigo_id, .col-livehouse_event, .col-beans_reward, .col-status { width: auto; min-width: 0; }
	.table thead { display: none; }
	.pk-card .table-responsive { overflow-x: visible; }
	.table tbody tr {
		display: block;
		border: 1px solid rgba(124,58,237,0.2);
		border-radius: 14px;
		margin: 0 0 0.75rem;
		padding: 0.6rem 0.9rem;
		background: rgba(255,255,255,0.025);
	}
	.table tbody tr.search-hidden {
		display: none !important;
	}
	.table tbody tr.row-today { border-left: 3px solid #ec4899; }
	.table tbody td {
		display: block;
		padding: 0.5rem 0;
		border-bottom: 1px solid rgba(255,255,255,0.05);
		font-size: 0.82rem;
		word-break: break-word;
		background: transparent;
	}
	.table tbody td:first-child { padding-left: 0; }
	.table tbody td:last-child { border-bottom: none; }
	.table tbody td::before {
		content: none;
	}
	.mobile-col-label { display: block; }
	.today-badge { margin-left: 0.4rem; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
	.hero { padding: 3.5rem 0 1.5rem; }
	.hero h1 { font-size: 1.9rem; }
	.brand-name {
		font-size: 0.82rem;
		max-width: 46vw;
	}
	.toolbar {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.65rem;
		align-items: stretch;
	}
	.search-field,
	.toolbar .search-field.bigo-field,
	.toolbar .search-field.date-field {
		width: 100%;
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
	}
	.search-field input[type="date"] {
		appearance: none;
		-webkit-appearance: none;
		box-sizing: border-box;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}
	.search-field input[type="date"] { height: 46px; }
	.refresh-pill {
		width: 100%;
		margin-left: 0;
		justify-content: center;
	}
	.pk-card { border-radius: 16px; }
	.table { min-width: 0; }
	.eq-bars { display: none; }
}

@media (max-width: 992px) {
	.toolbar {
		display: grid;
		grid-template-columns: 1fr;
		align-items: stretch;
	}
	.toolbar .search-field.bigo-field,
	.toolbar .search-field.date-field {
		width: 100%;
		max-width: none;
		min-width: 0;
	}
	.toolbar .search-field {
		width: 100%;
		max-width: none;
		min-width: 0;
	}
	.search-field input[type="date"] {
		box-sizing: border-box;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}
	.refresh-pill {
		margin-left: 0;
		justify-content: center;
	}
}
@media (max-width: 480px) {
	.hero h1 { font-size: 1.6rem; }
	.hero-icon { font-size: 3rem; }
	.brand-name {
		font-size: 0.76rem;
		max-width: 40vw;
	}
	footer { padding: 1.75rem 0.75rem; }
}
