.important-message {
	background-color: #CA3433;
	color: white;
	padding: 0.5rem;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
}

.header-container { 
	max-width: 100%;
	background-color: #0f0f0f;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.5fr;
	padding: 0.6rem 3rem;
	align-items: center;
}

.header-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	height: 100%;
	color: white;
	font-weight: 800;
	font-size: 1.75rem;
}

.search-bar-border {
	display: inline-block;
	background-color: white;
	margin: 0;
	border-radius: 50px;
	min-width: 0;
	min-height: 0;
}

.search-bar {
	display: grid !important;
	grid-template-columns: 7fr 1fr;
	gap: 10px;
	width: 100%;
}

.search-icon-container {
	text-align: center;
}

.search-icon-xmark {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.search-bar input {
	padding: 5px 10px;
	border: none;
	margin: 0;
	background-color: transparent;
	outline: none;
}

.search-bar button {
	background-color: transparent;
	border: none;
	height: 35px;
	width: 40px;
	font-size: 20px;
	align-items: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-suggestions-container {
	position: absolute;
	width: 100%;
	margin-top: 1rem;
	border-radius: 1rem;
	padding: 1rem;
	background-color: white;
	color: black;
	z-index: 20;
	box-sizing: border-box;
	display: grid;
	gap: 0.5rem;
}

.search-suggestions > a {
	display: flex;
	align-items: center;
	color: black;
	text-decoration: none;
	font-weight: bold;
}
	
.suggestion-image {
	height: 3rem; 
	width: 3rem;
	object-fit: cover;
	border-radius: 0.5rem;
	margin-right: 1rem;
}

.suggestions-show-more {
	color: black;
	text-decoration: none;
	font-size: 0.9rem;
	width: 100%;
	text-align: center;
	font-weight: bold;
}

.header-links {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2rem;
}

.header-link {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
}

.header-link-button {
	background-color: #CA3433;
	color: white;
	padding: 0.35rem 0.5rem 0.5rem 0.5rem;
	border-radius: 0.5rem;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
}

.mobile-header-container {
	display: none;
}

.mobile-fullscreen-menu {
	display: none;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
	.header-container {
		display: none;
	}
	
	.mobile-header-container {
		display: grid;
		width: 100%;
		background-color: #0f0f0f;
	}

	.mobile-header-search {
		display: none;
		justify-content: center;
		align-items: center;
		background-color: #0f0f0f;
		padding: 1rem 1.5rem;
	}

	.search-close-container {
		display: grid; 
		grid-template-columns: 5fr 1fr;
	}

	.search-bar > input {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.close-search {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
	}

	.close-search > svg {
		fill: white;
	}

	.mobile-header-menu {
		display: grid;
		grid-template-columns: 1fr 2fr 1fr;
		width: 100%;
		background-color: #0f0f0f;
		padding: 0.5rem 1.5rem;
	}

	.search-icon-mobile {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.search-icon-mobile > svg {
		fill: white;
	}

	.hamburger-icon-container {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.hamburger-icon-container > svg {
		fill: white;
	}

	.mobile-fullscreen-menu {
		display: none;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		height: 100vh;
		width: 100vw;
		background-color: #333;
		padding: 10%;
	}

	.mobile-menu-link {
		color: white;
		text-decoration: none;
		font-size: 1.25rem;
		font-weight: 700;
		padding: 0.5rem 0;
		border-bottom: 1px solid #fff;
		width: 100%;
	}

	.mobile-menu-link-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 0.5rem 0;
		border-bottom: 1px solid #fff;
	}

	.mobile-menu-link-inner {
		color: white;
		text-decoration: none;
		font-size: 1.25rem;
		font-weight: 700;
		width: 100%;
	}

	.mitt-konto-menu-link {
		color: white;
		text-decoration: none;
		font-size: 1.25rem;
		font-weight: 700;
		padding: 0.5rem 0;
		border-bottom: 1px solid #fff;
		width: 100%;
	}

	.mitt-konto-menu-link-inner {
		color: white;
		text-decoration: none;
		font-size: 1.25rem;
		font-weight: 700;
		width: 100%;
	}

	.mitt-konto-submenu, .mina-event-submenu {
		display: none;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		padding-left: 2rem;
		width: 100%;
	}

	.mobile-submenu {
		display: none;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		padding-left: 2rem;
	}

	.close-mobile-menu {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.close-mobile-menu > svg {
		fill: white;
	}

	.header-logo-link {
		display: flex;
		justify-content: center;
	}
}