/*
	CSS Stylesheet „main“
	Version 2023-11-14a
	© 2023 m-ds GmbH
*/

main {
	display   : grid;
	grid-area : main;
	position  : relative;

	grid:
		"nav"           max-content
		"childListView" auto
		/1fr
	;
}

main > nav {
	grid-area : nav;
}

main > #childListView {
	background      : white;
	border-bottom   : 1px solid hsl(330, 10%, 45%);
	border-top      : 1px solid hsl(330, 10%, 45%);
	grid-area       : childListView;
	overflow        : auto;
	scroll-behavior : smooth;
}