/* Glow modal: flat colour grid (username-style swatches, no gradients) */
.mg_glow_color_grid {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: 100%;
	padding: 4px 0;
}
.mg_glow_color_grid .mg_glow_tile {
	width: 32px;
	height: 32px;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mg_glow_color_grid .mg_glow_default {
	background: #46d742;
}
.mg_glow_color_grid .bccheck {
	color: #fff;
	font-size: 14px;
	text-shadow: 0 0 2px #000;
	pointer-events: none;
}

/* Message_Glow — ported from oldcody main.css text_glow rules */
.chat_log.text_glow {
	border-radius: 0 15px 0 15px;
	box-shadow: inset 0 0 46px -5px #46d742;
	border: 1px solid #0d8804 !important;
}
.chat_log.text_glow.text_glow_dynamic {
	box-shadow: inset 0 0 46px -5px currentColor;
	border: 1px solid currentColor !important;
}
