body {
	background-image: url('/templates/images/background.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat; 
	background-attachment: fixed; 
	min-height: 100vh;
	background: linear-gradient(to bottom, #3c6678, #36393e);
	margin: 0;
	padding: 0;
}

.titlebar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #424549; 
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	height: 50px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	position: relative;
	justify-content: space-between;
}

.titlebar h1 {
	margin-top: 15px;
	margin-left: 20px;
	font-size: 1.5em;
	color: white;
}

.pretty-link {
	color: inherit;
	text-decoration: none;
}

.hoverscale {
	display: inline-block;
	transition: transform 0.2s ease;
}
.hoverscale:hover {
	transform: scale(1.1);
}

.menu-toggle {
	display: none;
	font-size: 1.8em;
	cursor: pointer;
	color: white;
	line-height: 1;
	padding: 0 10px;
}

.nav-dropdown {
	display: none;
	flex-direction: column;
	background-color: #424549;
	position: absolute;
	top: 50px;
	right: 0;
	width: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	text-align: center;
}

.nav-dropdown.open {
	display: flex;
}

.nav-dropdown a {
	padding: 12px;
	text-decoration: none;
	color: white;
	display: block;
	border-top: 1px solid #555;
}
.nav-dropdown a:hover {
	background-color: #333;
}

@media (max-width: 600px) {
	.menu-toggle {
		display: block;
	}
}
@media (min-width: 601px) {
	.menu-toggle {
		display: none;
	}

	.nav-dropdown {
		display: flex !important;
		position: static;
		flex-direction: row;
		align-items: center;
		margin-left: auto;
		background: none;
		box-shadow: none;
		width: auto;
		gap: 20px;
	}

	.nav-dropdown a {
		border: none;
		padding: 0;
		color: white;
	}
}

