@font-face {
  font-family: "Pretendard-SemiBold";
  src:local(��),
  url("../../asset/font/Pretendard-SemiBold.woff2") format("woff2"),
  url("../../asset/font/Pretendard-SemiBold.woff") format("woff"),
  url("../../asset/font/Pretendard-SemiBold.eot") format("eot"),
  url("../../asset/font/Pretendard-SemiBold.otf") format("otf"),
  url("../../asset/font/Pretendard-SemiBold.ttf") format("ttf");
  font-style:narmal;
  font-weight:normal;
}
@font-face {
  font-family: "Pretendard-Regular";
  src:local(��),
  url("../../asset/font/Pretendard-Regular.woff") format("woff");
  font-style:narmal;
  font-weight:normal;
}
@font-face {
  font-family: "NanumGothic-Regular";
  src:local(��),
  url("../../asset/font/NanumGothic-Regular.woff2") format("woff2"),
  url("../../asset/font/NanumGothic-Regular.woff") format("woff"),
  url("../../asset/font/NanumGothic-Regular.eot") format("eot"),
  url("../../asset/font/NanumGothic-Regular.ttf") format("ttf");
  font-style:narmal;
  font-weight:normal;
}
/* CSS 초기화 구문 */
/*
font-size
26 / 22 / 18 / 14 / 12
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    /*font-family: 'Arial', sans-serif;*/
    /*font-family: "Pretendard-SemiBold";*/
    /*font-family: "Pretendard-Regular";*/
    /*font-family: "NanumGothic-Regular";*/
    font-family: "gulim";
    margin: 0;
    padding: 0;
    overflow: auto;
    height: 100%;
}

/* 헤더 스타일 */
header {
	display: flex;
	justify-content: space-between; /* 제목과 로고를 양쪽 끝으로 배치 */
	align-items: center; /* 세로 중앙 정렬 */
    /*background: linear-gradient(to right, #001636, #001636, #3A4CA8, #ffffff, #ffffff);*/
    background: #2b3239;
    border-bottom: 1px solid #6f6f6f;
    color: white;
    padding: 10px;
    height: 55px;
}

.logo {
	width: 350px; /* 로고 너비 */
	height: 100%; /* 로고 높이 */
	object-fit: contain; /* 로고가 영역에 맞게 조정됨 */
}

/* 메인 레이아웃 */
main {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 55px);;
    position: relative;
}
footer{
	height: 50px;
	background: black;
}
a {
	text-decoration: none;
}

/* 버튼 스타일 */
button {
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border: none;
    cursor: pointer;
}

.text_header_value{
	color: #6DCAB7;
	font-size: 30px;
	font-weight: bold;
}
.text_header_measure{
	color: #828282;
	font-size: 16px;
	margin-left: 10px;
}
.text_inner_value{
	color: #0093ff;
	font-size: 20px;
	font-weight: bold;
}
.text_inner_measure{
	color: #828282;
	font-size: 12px;
	margin-left: 10px;
}
.text_header_sub_btn{
	font-size: 14px;
}
.text_value_form{
	/*width: 85px;*/
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}
.header_title{
	padding-bottom: 5px;
	margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    display: flex; /* h2와 select를 같은 줄에 배치 */
	align-items: baseline;
	gap: 5px; /* h2와 select 사이의 간격 */
}
.header_title select {
	border: none;
	background: transparent;
	font-size: 1.5rem;
	font-weight: bold;
	color: inherit;
	outline: none;
	cursor: pointer;
	appearance: none;
	padding-right: 30px; /* 여유 공간 추가 */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 30px;
}

#side_bar {
	max-width: 75px;
	width: 75px;
	height: auto;
	display: flex;
	/*background: #001636;*/
	background: #2b3239;
	flex-direction: column;
	border-right: 1px solid #6f6f6f;
}

.side_menu {
	position: relative;
	display: flex;
	align-items: center; /* 텍스트와 아이콘 정렬 */
	width: 100%;
	padding: 7px;
	color: #fff;
	background: #2b3239;
	border: none;
	text-align: left;
	font-size: 14px;
	cursor: pointer;
	flex-direction: column;
	font-family: 'gulim';
	/*gap: 10px;*/
}

.side_menu:hover {
	background-color: #3A4CA8;
	/*font-weight: bold;*/
}

.side_menu.active {
	background-color: #3A4CA8;
	/*font-weight: bold;*/
}

.child_menu {
	background-color: #233044; /* 하위 메뉴 색상 */
	margin-left: 20px;
}

.sub_menu {
	display: block; /* 항상 block 상태 */
	overflow: hidden; /* 내용이 넘치지 않도록 설정 */
	height: 0; /* 초기 상태에서 높이 0 */
	transition: height 0.3s ease; /* 부드럽게 변화 */
	margin-left: 10px;
}

.sub_menu.active {
	height: auto; /* 활성화 시 자동 높이 */
}

.menu-icon {
	width: 20px; /* 아이콘 공간 확보 */
	text-align: center;
}

.menu-text {
	flex-grow: 1; /* 텍스트가 남은 공간 차지 */
}

.menu-toggle {
	margin-left: auto; /* 꺽쇠를 오른쪽 끝으로 배치 */
	font-size: 12px;
	transition: transform 0.3s ease; /* 애니메이션 효과 */
}

.parent_menu.open .menu-toggle {
	transform: rotate(180deg); /* 메뉴가 열릴 때 꺽쇠 회전 */
}
#main_content{
	position: relative;
	padding: 0px;
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #181818;
}

.overview_main_lv1{
	overflow: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.overview_main_lv2{
	position: absolute;
    width: 100%;
    aspect-ratio: 16 / 7.5;
    min-width: 1520px;
	min-height: 855px;
	/*max-width: 2300px;*/
	max-height: 1225px;
}
.overview_content{
	width: 100%;
	height: 100%;
	padding: 10px;
	/*background: grey;*/
	display: flex;
	gap: 20px;
	flex-direction: row;
}
.content_form{
	flex: 1 1 calc(50% - 20px);
    /*border-radius: 0px 0px 5px 5px;*/
    border-radius: 0px;
    /*padding: 5px 10px 5px 10px;*/
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background: #292f4e;*/
    background: #414854;
    /*box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3), -2px -2px 5px 0px rgba(0, 0, 0, 0.1);*/
}
.content_form.site{
	flex: 1 1 calc(25% - 20px);
	cursor: pointer;
	gap: 10px;
}
.content_form.site_detail{
	flex: 1 1 calc(33% - 20px);
}
.content_form.site:hover{
	background: #e3f0ff;
}
.content_form_inner{
	min-height: 26px;
	color: #ffffff;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: normal;
}
.content_form_inner_title{
	/*background: #002a5d;*/
	background: #000827;
	text-align: left;
	color: #ffffff;
    font-size: 18px;
    font-weight: normal;
    border-radius: 5px 5px 0px 0px;
    padding: 5px 10px 5px 10px;
    border-bottom: 1px solid #131e32;
    /*box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3), -2px -2px 5px 0px rgba(0, 0, 0, 0.1);*/
}
.fc_white{
	color: white;
}
.fs_26{
	font-size: 26px;
}
.fs_22{
	font-size: 22px;
}
.fs_18{
	font-size: 18px;
}
.fs_14{
	font-size: 14px;
}
.fs_12{
	font-size: 12px;
}
.fw_bold{
	font-weight: bold;
}
.content_form_map{
	position: relative;
	width: 100%;
	height: 100%;
}

.content_stats_form{
    border-radius: 0px 0px 5px 5px;
    padding: 5px 10px 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background: #292f4e;*/
    background: #414854;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3), -2px -2px 5px 0px rgba(0, 0, 0, 0.1);
}
.content_stats_form_inner{
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background: #292f4e;*/
    background: #414854;
}

.data_chart{
	width: 100% !important;
	height: 100% !important;
	/*height: auto !important;*/
}
.gap10{
	gap: 10px;
}

.db_main{
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.setting_main{
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.site_main{
	display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
.site_info{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-top: 1px solid #d3d3d3;
	padding-top: 5px;
    padding-bottom: 5px;
}
#total_per_site_tbody td{
	height: 60px;
}

#p2h_total_cumu_tbody td{
	height: 42px;
}


#map_legend {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	font-size: 12px;
	font-family: sans-serif;
	z-index: 999;
	text-align: center;
	padding: 4px 8px;
}

.map_color-box {
	padding: 4px 4px;
	color: #000;
	min-width: 60px;
}
.data_chart_form{
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: flex-start;;
}


.custom-legend {
	display: flex;
	padding-left:100px;
	flex-wrap: wrap;
	gap: 0px;
	/*margin-top: 10px;*/
	font-family: sans-serif;
	font-size: 12px;
	justify-content: flex-end;
}

.custom-legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 4px;
	border-radius: 4px;
	/*background: #f9f9f9;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);*/
}

.legend-color-box {
	width: 12px;
	height: 12px;
	border-radius: 2px;
}


.graph-setting-header {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.graph-setting-container {
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 10px;
}

.graph-setting-section {
	margin-bottom: 30px;
}

.overview_stats_table{
	border-collapse: collapse;
	width: 100%;
	color: #ffffff;
	letter-spacing: -1px;
}
.var_form{
	height: 50%;
}
@media (max-width: 1410px) {
  .var_form {
    height: auto;
  }
}

.graph-setting-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #ffffff;
}

.graph_setting_btn{
	gap: 10px;
    font-size: 12px;
    display: flex;
    /*position: absolute;*/
    height: 20px;
    top: 7px;
    left: 7px;
    border-radius: 5px;
    z-index: 10;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    background: #1690af;
    padding: 2px;
    cursor: pointer;
}
.graph_setting_btn.active{
	border: 2px solid white;
}

.graph-setting-panel {
	position: absolute;
	width: auto;
	height: auto;
	top: 40px;
	left: 7px;
	display: flex;
	flex-direction: row;
	background: #414854;
	padding: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	gap: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	color: #ffffff;
}

.graph-setting-left {
	/*width: 35%;*/
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.graph-setting-right {
	/*width: 65%;*/
}

.setting-box {
	display: flex;
	flex-direction: column;
	padding-bottom: 16px;
	border-bottom: 1px solid #5f5f5f;
}

.setting-title {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 10px;
}

/* 차트 타입 */
.chart-type-icons {
	display: flex;
	gap: 16px;
}

.chart-type-btn {
	width: 36px;
	height: 36px;
	padding: 6px;
	border-radius: 6px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.2s ease;
	background-color: #2f3542;
}

.chart-type-btn.selected {
	border-color: #4DB6F2;
	background-color: #3a404e;
}

/* 시간 단위 */
.time-unit-buttons {
	display: flex;
	gap: 10px;
}

.time-unit-btn {
	padding: 6px 12px;
	border: 1px solid #666;
	border-radius: 4px;
	cursor: pointer;
	background-color: #2f3542;
	color: #dcdcdc;
	transition: 0.2s;
}

.time-unit-btn.active {
	background-color: #4DB6F2;
	color: #ffffff;
	border-color: #4DB6F2;
}

/* ✅ Litepicker 다크 테마 오버라이드 */
.litepicker {
	background-color: #2f3542 !important;
	border: 1px solid #555 !important;
	color: #ffffff !important;
}

.litepicker .container__months,
.litepicker .container__months .month-item {
	background-color: #2f3542 !important;
	color: #ffffff !important;
}

.litepicker .container__weekdays > div {
	color: #bbbbbb !important;
}

.litepicker .day-item {
	color: #ffffff !important;
	background-color: transparent !important;
}

.litepicker .day-item:hover {
	background-color: #555 !important;
}

.litepicker .day-item.is-in-range,
.litepicker .day-item.is-start-date,
.litepicker .day-item.is-end-date {
	background-color: #4DB6F2 !important;
	color: #ffffff !important;
	border-radius: 4px !important;
}
.litepicker .container__tooltip{
	color: black !important;
}
.litepicker .container__months .month-item-header div{
	color: #fff !important;
}
.litepicker .container__months{
	box-shadow: none !important;
}
.apply-btn {
	width:100%;
	padding: 6px 16px;
	background-color: #4DB6F2;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.2s ease;
}

.apply-btn:hover {
	background-color: #40a3dc;
}


/*=======================*/

.button-grid {
	position: absolute;
	display: flex;
	padding: 5px;
	gap: 10px;
	width: 100%;
	height: 100%;
	flex-wrap: wrap;
	justify-content: center;
}

.button-tile {
	width: 30%;
	height: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border: 1px solid #5c6370;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: #525a66;
	color: white;
}

.button-tile:hover {
	background-color: #606874;
	border-color: #777f8c;
}

.button-tile.active {
	background-color: #007bff;
	color: #ffffff;
	border-color: #0056b3;
}

.button-tile img {
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
}

.button-tile span {
	font-size: 14px;
	font-weight: 500;
}


.weather-widget {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	width: 100%;
	height: 100%;
	padding: 5px;
	border-radius: 10px;
	color: white;
	text-align: center;
}

.weather-icon {
	width: 50%;
}
.icon-area {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.temperature {
	width: 50%;
}

.weather-status-text {
	font-size: 16px;
	margin-top: 4px;
	color: white;
}

.weather-main {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0px;
	font-size: 70px;
	font-weight: bold;
}

.weather-detail {
	font-size: 20px;
	color: white;
	font-weight: bold;
	letter-spacing: -1px;
}

/* vilage_fcst ============================== */

/* 스크롤 Wrapper */
#scroll-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-y: hidden;
}

/* scroll-content는 SmoothScrollbar 내부에서만 인식됨 */
.scroll-content {
	display: inline-block;
	white-space: nowrap;
	min-width: 100%; /* 스크롤 활성 조건 */
	height: 100%;
}

/* Weather table wrapper: 기본 컨테이너 */
.weather-table-wrapper {
	overflow-x: auto;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: grab;
	user-select: none; /* ✅ 드래그 선택 방지 */
}

/* 드래그 시 커서 */
.weather-table-wrapper.dragging {
	cursor: grabbing;
	cursor: -webkit-grabbing;
}

/* ✅ 스크롤바 사용자 지정 (smooth-scrollbar 내부용) */
.scrollbar-track.scrollbar-track-x {
	height: 12px !important;
	bottom: 0;
	background: rgba(255, 255, 255, 0.15);
}

.scrollbar-thumb.scrollbar-thumb-x {
	background: #ffffff;
	border-radius: 6px;
	height: 100%;
}

.scrollbar-track.scrollbar-track-y {
	width: 12px !important;
	right: 0;
	background: rgba(255, 255, 255, 0.1);
}

.scrollbar-thumb.scrollbar-thumb-y {
	background: #ffffff;
	border-radius: 6px;
	width: 100%;
}
.weather-table-wrapper .scrollbar-track {
  opacity: 1 !important;
}

/* ===== 테이블 ===== */
.weather-table {
	border-collapse: collapse;
	table-layout: fixed;
	height: 100%;
}

.weather-table th,
.weather-table td {
	color: white;
	border: 1px solid #ccc;
	padding: 6px;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	min-width: 65px;
	max-width: 65px;
	user-select: none;
}

.weather-table th:first-child,
.weather-table td:first-child {
	background: #2a313c;
	font-weight: bold;
	text-align: center;
}

.date-row th {
	background-color: #2a313c;
	text-align: left;
	padding-left: 6px;
}

.header-row th {
	background-color: #2a313c;
}

/* 그래프 셀 */
.temp-graph-canvas {
	width: 100%;
	height: 80px;
}

.temp-chart-cell {
	padding: 0 !important;
	height: 130px;
}

/*=======================================*/
#rdr_controls_form{
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
#rdr_controls{
	display: flex;
    padding: 5px;
    /*border: 1px solid #333333;*/
    border-radius: 5px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
	background: rgb(255 255 255 / 80%);
}
#play-button{
	display: flex;
    flex-direction: column;
    align-items: center;
    width: 42px;
}
#slider-form{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.rdr_controls_img{
	width:25px;
}
/*=======================================*/
/* 踰붾� �뤌*/
.legend-selection-menu {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: rgb(255 255 255 / 80%);;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
	width: 240px;
	text-align: center;
	font-size: 11px;
	transition: right 0.3s ease;
	letter-spacing: -1px;
}
.legend_form{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
    flex-direction: column;
    gap: 5px;
}
.legend_content{
	display: flex;
	padding: 3px;
    align-items: center;
    justify-content: space-around;
}
.legend_content_title{
	width: 25%;
	text-align: left;
}
.legend_content_inner{
	width: 75%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: space-around;
}
.legend-selection-menu.hidden {
	right: -80px;
}

.legend-selection-menu-close-btn{
	top: 15px;
    position: absolute;
    left: -24px;
    background: #a3a3a3;
    width: 24px;
    height: 30px;
    border-radius: 5px 0px 0px 5px;
    background-color: rgba(255, 255, 255, 1.0);
    box-shadow: -5px 3px 5px rgba(0, 0, 0, 0.1);
    color: #717171;
    font-size: 14px;
    padding: 6px;
    text-align: center;
}

/* 媛�濡쒕줈 諛곗튂�븯湲� �쐞�븳 flexbox */
.legend-row {
	display: flex;
	justify-content: center;
}

/* ���씠�� �뒪���씪 */
.legend-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 10px;
	margin-right: 5px;
}

/* �븘�씠肄� �꽮�뀡 援ъ꽦 */
.legend-icon-section {
	font-size:10px;
	flex-direction: column;
	align-items: center;
	margin-right: 5px;
}

.legend-icon-item {
	margin-bottom: 6px;
}
/* iOS 湲곌린�뿉留� �쟻�슜�릺�뒗 �뒪���씪 */
.legend-icon-item.ios-device{
    margin-bottom: 9px; /* iPhone�뿉�꽌 媛꾧꺽 議곗젙 */
}

.legend-icon {
	width: 30px;
	height: 30px;
}

.legend-description {
	font-size: 12px;
	margin-bottom: 10px;
}

/* �룄濡� �긽�깭 �젙蹂� 援ъ꽦 */
.legend-status-text {
	flex-direction: column;
	align-items: center;
	font-size: 10px;
}
/* 媛� �긽�깭 �빆紐⑹쓣 �꽭遺꾪솕�븯�뿬 4媛�吏� �깋�긽�쓣 �쟻�슜 */
.status-segment {
    width: 25%; /* 媛� �꽭洹몃㉫�듃�쓽 �꼫鍮꾨�� 4遺꾩쓽 1濡� �꽕�젙 */
    height: 15px; /* �꽭洹몃㉫�듃 �넂�씠 */
    display: inline-block;
    margin: 0;
    padding: 0;
}
/* 媛� status-item�쓽 湲곕낯 �뒪���씪 */
.status-item {
	margin-bottom:2px;
    display: flex;
    justify-content: center;
    /*justify-content: flex-start;*/
    align-items: center;
    width: 170px;
    border-radius: 4px;
    flex-wrap: wrap;
}

.status-item2 {
	width: 100%;
	padding: 5px;
	margin-bottom: 5px;
	text-align: center;
	border-radius: 4px;
	color: black; /* 湲곕낯 �뀓�뒪�듃 �깋 */
}
.status-item3 {
	padding: 5px;
	text-align: center;
	border-radius: 4px;
	color: black; /* 湲곕낯 �뀓�뒪�듃 �깋 */
	border: 1px solid #ababab;
}

.green {
	background-color: green;
	color: white; /* �뼇�샇 �뀓�뒪�듃�뒗 �븯���깋 */
}

.yellow {
	background-color: yellow;
}

.orange {
	background-color: orange;
}

.red {
	background-color: red;
}

.rdr5 {
	background-color: #9300E4;
}
.rdr4 {
	background-color: #B40000;
}
.rdr3 {
	background-color: #CCAA00;
}
.rdr2 {
	background-color: #005A00;
}
.rdr1 {
	background-color: #004AF5;
}
/*=======================================*/

#EmdOverview {
	/*width: 790px;
	height: 80px;
	white-space: nowrap;*/
	display: flex;
    width: 100%;
    height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px;
	box-sizing: border-box;
	flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.emd-item {
	display: inline-block;
	padding: 0 15px;
	/*border-right: 1px solid #ddd;*/
	font-size: 30px;
	font-weight: bold;
    color: #59ff34;
    line-height: 1.4;
}
.emd-item:last-child {
	border-right: none;
	margin-right: 0;
}

/*============================================*/

.ol-popup {
	position: absolute;
	background-color: white;
	-webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
	filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
	padding: 10px;
	padding-top:20px;
	border-radius: 10px;
	border: 1px solid #cccccc;
	bottom: 12px;
	left: -50px;
	min-width: 10px;
	width: 250px;
	font-size: 12px;
}
.ol-popup:after, .ol-popup:before {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ol-popup:after {
	border-top-color: white;
	border-width: 10px;
	left: 48px;
	margin-left: -10px;
}
.ol-popup:before {
	border-top-color: #cccccc;
	border-width: 11px;
	left: 48px;
	margin-left: -11px;
}
.ol-popup-closer {
	text-decoration: none;
	position: absolute;
	top: 5px;
	right: 15px;
	font-size:20px
}
.ol-popup-closer:after {
	content: "X";
}
.popup_title{
	position: absolute; width:100%; height:100%; top: 0px; padding-top: 10px;
}
.m_closer{
	display:none;
}

/*===================================================*/
/* CCTV 박스 감싸기 */
.cctv-item {
	display: inline-flex;          /* inline-block → inline-flex */
	flex-direction: column;        /* 수직 정렬을 위해 column */
	width: calc(33.333% - 10px);   /* 3열 배치, 사이 여유 10px */
	margin: 5px;
	vertical-align: top;
	overflow: hidden;
}

/* 제목 스타일 (위에 그대로) */
.cctv-title {
	font-size: 14px;
	padding: 2px 8px;
	text-align: center;
    color: white;
}

/* 비디오 부분 채우고 수직/수평 중앙정렬 */
.cctv-item video {
	flex: 1 0 auto;                /* 남은 영역을 채우되 콘텐츠 크기는 유지 */
	margin: auto 0;                /* 수직 마진 auto 로 중앙에 위치 */
	display: block;
	border: 1px solid #6e6e6e;
    border-radius: 5px;
}