/* Title bar */
.titlebar {
	overflow: hidden;
	background-color: #FFF;
	position: fixed; /* Set the navbar to fixed position */
	top: 0; /* Position the navbar at the top of the page */
	width: 100%; /* Full width */
	padding: 10px 10px;
}

/* Navigation bar */
.navbar {
	overflow: hidden;
	background-color: #333;
	position: fixed; /* Set the navbar to fixed position */
	top: 62px; /* Position the navbar at the top of the page */
	width: 100%; /* Full width */
}

/* Links in navigation bar */
.navbar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

/* Mouse-over in navigation bar */
.navbar a:hover {
	background: #ddd;
	color: black;
}

/* Main content */
.main {
	padding: 16px;
	margin-top: 90px; /* Add a top margin to avoid content overlay */
}
