
/*gmon tooltip*/
.gmon_tooltip {
	display: none;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 10px;
	width: 480px;
	max-width: 90%;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	text-align: left;
	font-size: 14px;
	z-index: 100;
	transition: all 0.3s ease;
	overflow: hidden;
}

.gmon_tooltip .map-image {
	float: left;
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 10px;
}

.gmon_tooltip .gmon_tooltip-content {
	overflow: hidden;
}

.gmon_tooltip .server-info {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

.gmon_tooltip .server-status {
	margin-bottom: 5px;
}

.gmon_tooltip .server-ip, .gmon_tooltip .server-country {
	font-size: 12px;
}

.gmon_tooltip canvas {
	display: block;
	margin-top: 10px;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.gmon_tooltip {
		width: 260px;
		font-size: 13px;
	}

	.gmon_tooltip .map-image {
		float: none;
		display: block;
		width: 100%;
		height: auto;
		margin: 0 auto 10px;
	}
}
