@charset "UTF-8";
/**
 * @Class Name  : map-main.css
 * @Description : 
 * @author      : YoungChoon, Ryu
 * @since       : 2025. 10. 16
 * @version 1.0
 *
 *
 * @Modification Information
 * 개정일자			     개정자                  개정내용
 * ------------------ ----------- --------------------------
 * 2025. 10. 16        YoungChoon, Ryu       최초생성
 *
 *
 * Copyright 2025. 올포랜드 INC.All rights reserved.
 */
#prsChartPopup {
	display: none;
}



/* 팝업 내부 헤더 영역 고정 및 위쪽 공간 제거 */
#chartPopup .popupHeader {
	position: sticky;
	top: 0; /* 팝업 내부 상단에 붙음 */
	background: #fff; /* 배경 지정 필수 */
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px; /* 위쪽 패딩 제거 */
	border-bottom: 1px solid #ccc;
	margin: 0; /* 상단 마진 제거 */
}

/* 타이틀과 X 버튼 */
#chartPopup .popupHeader .chartTitle {
	margin: 0; /* 상단 마진 제거 */
	padding: 4px 0; /* 필요 시 최소 패딩 */
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	color: #000;
}

#chartPopup .popupHeader .closeBtn {
	position: relative;
	top: auto;
	right: auto;
}

.closeBtn {
	position: absolute;
	top: 6px;
	right: 10px;
	cursor: pointer;
	font-size: 16px;
	color: #555;
}

.chartTitle {
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	color: #000;
	margin: 0 0 4px 0; /* 상단 타이틀과 1번 차트 간 여백 최소화 */
}

.chartContainer {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chartBox {
	border-bottom: 1px solid #ddd;
	padding-bottom: 8px;
}

.chartBox h3 {
	font-size: 13px;
	margin: 0 0 3px 0;
	text-align: center;
	color: #000;
}

.chartBox canvas {
	width: 100% !important;
	height: auto !important;
	max-height: 180px;
}

.chartBox.largeChart canvas {
	max-height: 360px; /* 기존의 2배 높이 */
}

.bottomCloseArea {
	text-align: center;
	margin-top: 10px;
}

.bottomCloseBtn {
	background-color: #2c3e50;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 6px 16px;
	cursor: pointer;
}

.bottomCloseBtn:hover {
	background-color: #34495e;
}
@media (max-width: 1200px) {
  #floatingInfo .modal-content {
    max-height: calc(67vh );
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}