.app-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 18px;
}

.panel {
	position: relative;
	width: min(100%, 1040px);
	max-height: none;
	padding: 34px clamp(20px, 4vw, 56px);
	border: 1px solid var(--color-panel-border);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
		var(--color-panel);
	box-shadow: var(--shadow-panel);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.panel::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 62%);
	pointer-events: none;
}

.panel-hours {
	width: min(100%, 980px);
}

.panel-admin {
	width: min(100%, 1060px);
}

.top-nav {
	position: absolute;
	top: 20px;
	right: 28px;
	display: flex;
	gap: 16px;
	font-size: 0.78rem;
	color: var(--color-muted);
	z-index: 2;
}

.top-nav a {
	transition: color 0.2s ease, opacity 0.2s ease;
}

.top-nav a:hover,
.top-nav a.active {
	color: var(--color-accent);
}

.top-nav a[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.page-header {
	margin-bottom: 28px;
}

.page-header h1 {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 2.4rem);
	font-weight: 600;
	letter-spacing: -0.04em;
}

.page-header p {
	margin: 7px 0 0;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.separator {
	height: 1px;
	margin: 28px 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

.actions {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

@media (max-width: 720px) {
	.app-shell {
		place-items: start center;
		padding: 18px 12px;
	}

	.panel {
		border-radius: 20px;
		padding-top: 64px;
	}

	.top-nav {
		top: 22px;
		left: 20px;
		right: auto;
	}
}
