.header {
	height: var(--header-height);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0px 12px;
	z-index: 20;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;
	background-color: var(--background-color);
}

.headerLogo {
	display: flex;
	align-items: center;
	line-height: 0.5;
	margin-left: 12px;
	height: 100%;
	max-height: var(--header-height);
}

.headerLogo img {
	height: calc(100% - 8px);
	max-height: calc(100% - 8px);
	width: auto;
	display: block;
	background: transparent;
	border-radius: 5px;
	box-shadow: none;
	margin-top: 4px;
	margin-bottom: 4px;
	padding-top: 0;
	padding-bottom: 0;
}

[data-theme="dark"] .headerLogo img {
	background: transparent;
	filter: brightness(0.95) contrast(1.2);
}

.headerMenu {
	color: var(--app-tertiary-color);
	display: flex;
	flex-direction: row;
	margin-right: 12px;
	align-items: center;
	background-color: transparent;
	border: none;
	border-radius: 5px;
	padding-right: 2px;

	&:hover {
		background-color: var(--background-highlight-color);
		cursor: pointer;
	}

	& .menuTitle {
		font-family: var(--app-font-family);
		font-size: 1rem;
		font-weight: bold;
		margin-left: 4px;
	}
}

.headerActionContainer {
	display: flex;
	align-items: center;
}

@media only screen and (width < 800px) {
	.versionInfo,
	.menuTitle {
		display: none;
	}
}
