/* GIS 지도 컨테이너 CSS */
#gisContents.contentWrap {
	position: relative;
}

/* 지도 컨테이너 크기 */
#map.map {
	position: relative;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	height: 560px !important;
	overflow: hidden;
}

/* 좌표정보 표시 영역 */
.gis-mouse-position {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 20%;
	text-align: center;
	background-color: #ffffff;
	color: #0066cc;
	font-size: 12px;
	font-family: Arial, sans-serif;
	border-top: 1px solid rgba(0, 102, 204, 0.2);
	border-bottom: 1px solid rgba(0, 102, 204, 0.2);
	box-sizing: border-box;
	min-height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	border-radius: 15px;
	opacity: 60%;
}

/* 좌표정보 텍스트 */
.custom-mouse-position {
	color: #0e2a45;
	font-size: 16px;
	font-weight: bold;
}

/* 기본 Tooltip 스타일 */
.ol-tooltip {
	position: absolute;
	background-color: #2a8aac;
	color: white;
	pointer-events: none;
	white-space: nowrap;
	font-size: 16px;
	z-index: 1000;
}

.ol-tooltip.hidden {
	display: none;
}

.ol-tooltip-static {
	background-color: #2a8aac;
	color: white;
}

.ol-tooltip-measure {
	background-color: #2a8aac;
	color: white;
	font-size: 16px;
}

/* 해저지형 수심 정보 팝업 */
.depth-info-popup {
	display: none;
	min-width: 160px;
	max-width: 220px;
	border-radius: 4px;
	overflow: hidden;
	pointer-events: none;
	z-index: 1000;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.depth-info-header {
	background-color: #212f3c;
	padding: 10px 14px;
}

.depth-info-title {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.depth-info-content {
	padding: 12px 14px;
	background-color: #ffffff;
}

.depth-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.depth-info-label {
	color: #555;
	font-size: 13px;
	font-weight: 500;
}

.depth-info-value {
	color: #0e2a45;
	font-size: 15px;
	font-weight: 700;
}