@charset "UTF-8";

.user-menu-container {
	background:white;
	border-radius: 4px;
	width: fit-content;
	height: auto;
	display: grid;
	font-size: 18px;
	box-shadow: 0px 8px 16px 2px rgba(97, 97, 97, 0.1), 0px 16px 32px 2px rgba(97, 97, 97, 0.1);
}

.user-menu-separator{
	justify-self: center;
	width: 90%;
	height: 0;
	border: 1px solid rgba(138, 138, 138, 0.5);
}

.user-menu-userinfo {
	
}

.user-menu-user-name {
	font-weight: bold;
	padding: 12px 16px 0 16px;
	height: 22px;
	line-height: 22px;
	font-size: 16px;
}

.user-menu-user-email {
	padding: 6px 16px 20px 16px;
	/*border-bottom: 2px solid #f0f0f0;*/
	height: 22px;
	line-height: 22px;
	font-size: 16px;
}

.user-menu-context {
	display: grid;
	padding: 8px;
}

.user-menu-element {
	height: 40px;
	line-height: 40px;
	display: flex;
	border-radius: 4px;
}

.user-menu-element:hover {
	background: #f0f0f0;
}

.user-menu-icon {
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px 0 16px;
}

.user-menu-title {
	padding: 0 16px 0 0;
	font-size: 14px;
}

.change-log-container {
	width: 90vw;
	height: 90vh;
	background: white;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
}

.change-log-header {
	font-size: 18px;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	padding: 0px 30px;
}

.change-log-content {
	padding: 0px 28px;
	overflow-y: scroll;
}
.change-log-content>h1 {
	text-align: inherit;
	margin: 30px 0 20px;
}
.change-log-content>h3 {
	text-align: inherit;
	margin: 32px 0 14px;
}
.change-log-footer {
	height: 40px;
	line-height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 14px 8px;
}
