:root {
	--bg: #0b1020;
	--panel: #111a33;
	--text: #e7ecff;
	--muted: rgba(231, 236, 255, 0.7);
	--border: rgba(231, 236, 255, 0.12);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	--radius: 16px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: var(--text);
	background: radial-gradient(1100px 600px at 18% 0%, #15244f 0%, var(--bg) 55%);
	min-height: 100vh;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 10;
    min-height: 75px;
}

.title {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.title h1 {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.2px;
}

.title .sub {
	color: var(--muted);
	font-size: 13px;
}

.controls {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 8px 12px;
	box-shadow: var(--shadow);
    font-size: 13px;
}

main {
	max-width: 1600px;
	margin: 0 auto;
	padding: 16px;
}

.grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 14px;
}

.card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 10px;
	min-height: 100px;
}

.card h2 {
	margin: 6px 10px 0 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
}

select,
button,
input {
	background: transparent;
	color: var(--text);
	border: none;
	outline: none;
	font-size: 13px;
}

option {
	background: var(--panel);
	color: var(--text);
}

button {
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}


button:hover {
	background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

.foot {
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
.footer {
	margin-top: 12px;
	color: var(--muted);
	font-size: 12px;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	text-align: center;
}

code {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2px 6px;
	border-radius: 8px;
	color: rgba(231, 236, 255, 0.92);
}
