.central-messages-open {
	margin: 4px 2px;
	padding: 1px 3px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.central-messages-open img {
	display: block;
	width: 16px;
	height: 16px;
}

.central-messages-layer {
	position: fixed;
	inset: 0;
	z-index: 9990;
	pointer-events: none;
}

.central-messages-panel {
	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: min(455px, 100vw);
	height: 100vh;
	height: 100dvh;
	background: #fff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.28);
	transform: translateX(105%);
	transition: transform 250ms ease;
	overflow: hidden;
	pointer-events: auto;
}

.central-messages-panel-visible {
	transform: translateX(0);
}

.central-messages-title {
	box-sizing: border-box;
	height: 34px;
	padding: 8px 10px;
	border-bottom: 1px solid #c8c8c8;
	font-weight: bold;
}

.central-messages-content {
	height: calc(100vh - 34px);
	height: calc(100dvh - 34px);
	overflow: auto;
}
