*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	color-scheme: dark;
	--bg: #0b0f14;
	--panel: #0f1620;
	--text: #e7edf5;
	--muted: #98a6b7;
	--border: rgba(255, 255, 255, 0.08);
}

html,
body {
	height: 100%;
	margin: 0;
	font-family:
		ui-sans-serif,
		system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial;
	background: var(--bg);
	color: var(--text);
}

.app {
	min-height: 100%;
	display: grid;
	justify-items: center;
	align-content: start;
	padding: 18px 14px;
}

.shell {
	width: min(720px, 100%);
	display: grid;
	gap: 12px;
}

.header {
	text-align: center;
}

.title {
	margin: 0;
	font-size: 30px;
	letter-spacing: 0.2px;
	text-align: center;
}

.card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	border: 1px solid #444;
	border-radius: 12px;
}

h1,
h2,
p {
	margin: 20px;
	text-align: center;
}

p {
	color: var(--muted);
	line-height: 1.5;
}

button {
	margin: 6px 0 0;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #1a2330;
	color: var(--text);
	font-size: 16px;
	cursor: pointer;
}

button:hover {
	background: #243041;
}

.hide {
	display: none;
}

.circle {
	height: 50px;
	width: 50px;
	border: 1px solid black;
	border-radius: 100%;
	background-color: white;
}

.active {
	background-color: #f5c400;
	border-color: #f5c400;
}

.circleGrid {
	display: grid;
	grid-template-columns: repeat(5, auto);
	gap: 10px;
	justify-content: center;
	padding: 12px;
}

.duration-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
}
