nav {
	background-color: #FFFFFF;
	padding: 10px 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	top: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 1000;
	height: 80px;
	padding: 0 5%;
}

/* Left section (logo + name) */
.nav-left {
	display: flex;
	align-items: center;
}

.nav-left img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.nav-left span {
	color: #39B0BC;
	font-size: 1.8em;
	font-family: Arial, sans-serif;
}

.nav-left sup {
	font-size: 0.5em;
	vertical-align: super;
}

/* Right section (tabs) */
.nav-right {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.nav-right li {
	margin-left: 20px;
}

.nav-right a {
	color: #39B0BC;
	text-decoration: none;
	font-size: 20px;
	font-family: Arial, sans-serif;
}

.nav-right a:hover {
	text-decoration: underline;
	color: #F37223;
}
