
html, body {
	margin: 0;
	height: 100%;
	background: #121214;
	font-family: Arial, sans-serif;
}

/* HEADER */
header {
	padding: 40px;
	text-align: center;
	background-color: #1A1A1E;
	border: 1px solid #29292D;
	color: white;
	padding-left: 70px;
}

header h1 {
	margin: 0;
	font-size: 40px;
}

/* =========================
   MAIN CONTENT
========================= */
main {
	padding: 20px;
	color: white;
	font-size: 25px;

	/* always leave space for rail */
	margin-left: 60px;
	transition: margin-left 0.3s ease;
}

/* FOOTER */
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: #1A1A1E;
	border-top: 1px solid #29292D;
	color: white;
}

/* SIDEBAR RAIL */
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 60px;

	background: #1A1A1E;
	border-right: 1px solid #29292D;

	overflow: hidden;
	transition: width 0.3s ease;

	z-index: 2000;
	box-shadow: 2px 0 10px rgba(0,0,0,0.4);
}

/* EXPANDED SIDEBAR */
.sidebar.active {
	width: 250px;
}

/* BUTTON */
.menu-btn {
	position: fixed;
	top: 10px;
	left: 10px;

	width: 40px;
	height: 40px;

	background: #333;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 20px;

	border-radius: 6px;

	z-index: 6000;

	transition: left 0.3s ease;
}

/* MENU TEXT */
.sidebar h2 {
	color: white;
	margin-left: 20px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.sidebar.active h2 {
	opacity: 1;
}

.sidebar a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	white-space: nowrap;

	opacity: 0;
	transition: opacity 0.2s ease;
}

.sidebar.active a {
	opacity: 1;
}

/* OPTIONAL OVERLAY FEEL */
.sidebar.active {
	z-index: 5000;
}

#page-name {
	color: #ffffff;
	font-size: 20px;
	margin-top: 4px;
}