.console-container {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99999;
	font-family: sans-serif;
	overflow: initial;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.console-toggle {
	background: #0000007a;
	color: white;
	border: 2px solid #333;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.console-counter {
	position: absolute;
	top: -5px;
	right: -5px;
	background: red;
	color: white;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	/* border-radius: 50%; */
}

.console-panel {
	display: none;
	position: fixed;
	bottom: 60px;
	right: 10px;
	width: 350px;
	max-height: 70%;
	overflow-y: auto;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.console-panel.open { display: block; }

/* header do painel */
.console-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	margin-bottom: 8px;
}

.console-panel-title {
	color: #EEE;
	font-weight: 700;
	font-size: 14px;
}

/* lista de mensagens (scroll) */
.console-list {
	overflow-y: auto;
	max-height: calc(50vh - 60px);
	padding-right: 6px;
}

.console-message {
	position: relative;
	padding: 8px 36px 8px 12px;
	border-radius: 6px;
	margin-bottom: 8px;
	color: #fff;
	word-break: break-word;
	font-size: .8em;
	white-space: pre-line;
	/* margin: 5px 0;
	padding: 5px 8px;
	border-radius: 4px;
	color: white;
	position: relative;
	font-size: 0.9em; */
}

.console-level-1 { background: #155724; }
.console-level-2 { background: #7a5800; }
.console-level-3 { background: #6f1111; }

/* texto da mensagem */
.console-text {
  display: block;
}

.console-del {
	position: absolute;
	right: 1px;
	top: 6px;
	background: transparent;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	padding: 2px 6px;
/*
	position: absolute;
	right: 5px;
	top: 5px;
	background: rgba(51, 51, 51, .7);
	border: none;
	color: white;
	cursor: pointer;
	border-radius: 50%;
	width: 1em;
	height: 1em;
*/
}

.console-unread {
	position: absolute;
	right: 15px;
	top: 7px;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	color: #ffd54f;
	/* float: left;
	font-size: 1.5em;
	margin-right: 0.3em; */
}

.console-clear {
	background: rgba(241, 241, 241, .25);
	border: 1px solid rgba(255, 255, 255, .08);
	color: #fff;
	padding: 4px 8px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	/* padding: .2em .4em;
	border-radius: 1em;
	cursor: pointer; */
}