.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.logo-image {
  width: 64px;
  height: 64px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  padding-top: 8px;
}


.hamburger-button {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding-right: 10px;
	z-index: 1001;
}

.hamburger-icon {
	display: block;
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px 0;
	transition: all 0.3s ease;
}

@media (max-width: 950px) {
	.hamburger-button {
		display: block;
	}
}

/* Sidebar */
.sidebar {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background-color: #1a56db;
	z-index: 1000;
	transition: right 0.3s ease;
	padding: 80px 20px 20px;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.sidebar.open {
	right: 0;
}

.close-button {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	padding: 5px;
}

.sidebar-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-nav-item {
	margin-bottom: 20px;
}

.sidebar-nav-link {
	color: white;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	display: block;
	padding: 10px 0;
	transition: opacity 0.2s ease;
}

.sidebar-nav-link:hover {
	opacity: 0.8;
}

/* Style for the login button in the sidebar */
.sidebar-nav-item button {
	width: 100%;
	padding: 12px 0;
	margin-top: 10px;
}

.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

