/* Shared styles for lymeessentials.com — used by every page */

/* Navigation menu */
ul.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #0a6e7f;
}
li.menu-item {
	float: left;
}
li.menu-item.active {
	background-color: #1a9cb0;
}
li.menu-item a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
li.menu-item a:hover {
	background-color: #4ecdc4;
}

/* Headings */
h1 {
	color: #0a6e7f;
}
h2 {
	color: #1a9cb0;
}
h3 {
	color: #4ecdc4;
}
h4 {
	color: #7dd3d8;
}

/* Images */
img {
	width: 100%;
	height: auto;
	display: block;
}

/* Layout helpers */
.centered {
	max-width: 50%;
	margin: 0 auto;
}
.centered-product {
	max-width: 35%;
	margin: 0 auto;
}
.centered-combo {
	max-width: 100%;
	margin: 0 auto;
}
.inline-image {
	float: left;
}
.float-brake {
	clear: both;
}

/* Lightbox / modal dialog (used for the Steven Buhner popup) */
.lightbox {
	margin: auto;
	max-width: 550px;
	max-height: 80%;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	border: 2px solid #333;
	overflow: auto;
	padding: 0;
}
.lightbox::backdrop {
	background: rgba(0, 0, 0, 0.5);
}
.lightbox-image {
	float: left;
	margin-right: 10px;
}
.lightbox-content {
	padding: 15px;
}
.lightbox-close-button {
	position: absolute;
	bottom: 5px;
	right: 5px;
}

/* Tables (e.g. cordyceps dosage table) */
table, th, tr, td {
	border: 1px solid grey;
}
