.navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-link {
	color: white;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	text-decoration: none;
}

.nav-link:hover {
	opacity: 1;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: white;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 40px;
}

.desktop-login-button {
	display: block;
	min-width: 140px;
	font-size: 20px;
	font-weight: 600;
	padding-top: 10px;
	padding: 10px 8px;
}
@media screen and (max-width: 950px) {
	.nav-list {
		display: none;
	}
	.desktop-login-button,
	.desktop-signup-button {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav-list {
		display: none;
	}

	.nav-buttons {
		margin-left: 0;
	}

	.desktop-login-button {
		display: none;
	}
}

.loading-spinner-container{
	width: 140px;
	display: flex;
	justify-content: center;
}
.loading-spinner {
	width: 32px;
	height: 32px;
	border: 4px solid #ccc;
	border-top: 4px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 8px;
}
.loading-spinner-sidebar-container{
	display: flex;
	justify-content: center;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media screen and (max-width: 950px) {
	.loading-spinner-container{
		width: -moz-fit-content;
		width: fit-content;
	}
}
.header {
	background-color: #1a56db;
	padding: 10px 0 10px 0;
}

.header-container {
	margin: 0 2vw;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* gap: 500px; */
}

.header-right {
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
	.header-container {
		justify-content: space-between;
		margin: 0 0.8vw;
		padding: 0 20px;
	}
}

@media (max-width: 640px) {
	.header-container {
		flex-direction: row;
		justify-content: space-between;
		margin: 0 1.2vw;
		padding: 0 15px;
	}

	.header-right {
		width: auto;
	}
}

