body {
	background-color: white;
	font-family: sans-serif;
}

/* Navbar */

.navbar {
	display: none;
}

/* basic page elements */

h1 {
	font-size: 1.9rem;
	margin-bottom: .7rem;
}
	
h2 {
	border-bottom: 1px dashed black;
	font-size: 1.4rem;
	margin-bottom: .7rem;
}	
	
/* tables */

.table {
	background-color: white;
}
	
.table-one-month,
.div-month table {
	border: solid thin gray;
	border-collapse: collapse;
}

.table-one-month th,
.table-one-month td {
	border: solid thin gray;
}

.table-one-month th,
.div-month th {
	text-align: center;
}

.table-one-month th {
	padding: .5em;
	width: 14%;
}
	.table-one-month th:nth-child(1) {
		color: red;
		width: 2%;
	}
	.table-one-month td:nth-child(1) {
		color: red;
		text-align: center;
	}
	
.table-one-month td {
	padding: .75em;
	text-align: left;
	vertical-align: top;
}
	
.table-one-month .event {
	color: #0084e2;
	display: block;
	font-size: .9rem;
	line-height: 1.1rem;
}			

.div-month {
	display: inline-block;
	padding: 0 .5rem 0 0;
}

.div-month th,
.div-month td {
	border: solid thin gray;
	font-size: .9rem;
}
	
.div-month th {
	width: 14.29%;
}
	
.div-month p {
	font-weight: bold;
	font-size: 1.2rem;
	letter-spacing: 1px;
	margin-bottom: 0.6em;
	text-align: center;
}
.div-month span {
	padding-bottom: 0.2rem;
}

.alert-info,
.card-event-info {
	display: none;
}	

/* Print layout: Portrait ************************************************************* */

@media (orientation: portrait) {
	.table-one-month td {
		height: 2.5cm !important;
	}	
}

/* Print layout: Landscape ************************************************************ */
	
@media (orientation: landscape) {
	.table-one-month td {
		height: 1.5cm !important; /* ???: Is this OK height? */
	}	
}	

