
:root {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;

	--header-height: 64px;
	--side-padding: 16px;
	--content-margin: 24px;
	--border-color: rgba(0, 0, 0, 0.24);
	--text-color: #000000;
	--header-text-color: #ffffff;
	--button-transition: background-color 100ms ease-in-out;

	--stat-sidenav-width: 260px;
}

/* Adjust settings for small devices */
@media only screen and (max-width: 600px) {
	:root {
		--header-height: 56px;
		--side-padding: 8px;
		--content-margin: 16px;
	}
}

body {
	max-height: 100vh;
	margin: 0;
	padding: 0;
}

main {
	box-sizing: border-box;
}

section {
	box-sizing: border-box;
}

div {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	display: flex;
	margin-inline: 0;
	margin-block: 0;
}

.page {
	height: calc(100vh - var(--header-height));
	width: 100vw;
	overflow-x: clip;
	overflow-y: auto;
}

.page-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.0075em;
}
