.stars {
	position: relative;
	display: inline-block;
	color: lightgrey;
	font-family: Arial, sans-serif;
	line-height: 1;
}

.stars::before {
	content: "\2605\2605\2605\2605\2605";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(var(--rating) * 20%);
	overflow: hidden;
	color: black;
	pointer-events: none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.3;
	margin-top: 20px;
	margin-right: 90px;
	margin-bottom: 20px;
	margin-left: 60px;
}

a.navbar, a.nav {
	font-weight: bold;
	text-decoration: none;
}

.nav {
	display: table;
	width: 100%;
	font-weight: bold;
	font-family: verdana;
}

a {
	color: #0000dd;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:active {
	text-decoration: underline;
}

.arrow {
	width: 11px;
	height: 11px;
	display: inline;
}

.sortnav,.seennav {
	float: right;
	text-align: right;
	font-weight: normal;
	font-size: 0.9em;
}

.seen {
	background-color: #dde;
	font-weight: normal;
}

.seenbadge {
	float: right;
	padding-right: 10px;
	padding-top: 4px;
	font-style: italic;
	font-size: 0.9em;
}

.seenlegend {
	float: right;
	text-align: right;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	background-color: #dde;
	font-weight: normal;
	font-size: 0.9em;
}

@media print {

	@page {
		size: letter portrait;
	}

	body {
		margin: 0;
		padding: 0;
		.nav,.seenbadge {
			display: none;
		}
	}

	.movie {
		break-inside: avoid;
		page-break-inside: avoid; /* for older browsers */
	}
}

