@charset "UTF-8";


.cke_notifications_area {
  display: none !important;
}

.flex {
  display: flex;
}

/* align-items 유틸리티 */
.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-stretch {
  align-items: stretch;
}

.align-items-baseline {
  align-items: baseline;
}


/* justify-content 유틸리티 */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

/* text-align 유틸리티 */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-start {
  text-align: start; /* writing-mode에 따라 달라짐 (ltr → left, rtl → right) */
}

.text-end {
  text-align: end;   /* writing-mode에 따라 달라짐 (ltr → right, rtl → left) */
}

/* vertical-align 유틸리티 */
.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

/* 높이 관련 */
.height-fit {
  height: fit-content;
}

.min-height-fit {
  min-height: fit-content;
}

.max-height-fit {
  max-height: fit-content;
}

/* 너비 관련 */
.width-fit {
  width: fit-content;
}

.min-width-fit {
  min-width: fit-content;
}

.max-width-fit {
  max-width: fit-content;
}



.height-50 {
  height: 50px;
}
.height-100 {
  height: 100px;
}
.height-150 {
  height: 150px;
}
.height-200 {
  height: 200px;
}
.height-250 {
  height: 250px;
}
.height-300 {
  height: 300px;
}

.color-red{
	color: red;
}
.color-gray-lightest {
  color: #f0f0f0; /* 거의 흰색 */
}

.color-gray-light {
  color: #d3d3d3; /* 밝은 회색 */
}

.color-gray-medium {
  color: #b0b0b0; /* 중간 회색 */
}

.color-gray-dark {
  color: #9e9e9e; /* 진한 회색 */
}

.color-gray-darkest {
  color: #4a4a4a; /* 거의 검정 */
}
.color-dmagenda{
	color: #A6057B !important;
}
.color-orange {
  color: #E67E22;
}

.bg-gray-light {
  background-color: #f5f5f5; /* 아주 연한 회색 */
}

.bg-gray-medium {
  background-color: #b0b0b0; /* 중간 회색 */
}

.bg-gray-dark {
  background-color: #9e9e9e; /* 진한 회색 */
}

.bg-gray-darkest {
  background-color: #4a4a4a; /* 거의 검정 */
}

.font-8  { font-size: 8px; }
.font-10 { font-size: 10px; }
.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }

.font-rem-1   { font-size: 1rem !important; }   /* 16px */
.font-rem-1-5 { font-size: 1.5rem !important; } /* 24px */
.font-rem-2   { font-size: 2rem !important; }   /* 32px */
.font-rem-2-5 { font-size: 2.5rem !important; } /* 40px */
.font-rem-3   { font-size: 3rem !important; }   /* 48px */


/* Margin Top */
.m-top-10 { margin-top: 10px; }
.m-top-20 { margin-top: 20px; }
.m-top-30 { margin-top: 30px; }

/* Margin Right */
.m-right-10 { margin-right: 10px; }
.m-right-20 { margin-right: 20px; }
.m-right-30 { margin-right: 30px; }

/* Margin Bottom */
.m-bottom-10 { margin-bottom: 10px; }
.m-bottom-20 { margin-bottom: 20px; }
.m-bottom-30 { margin-bottom: 30px; }

/* Margin Left */
.m-left-10 { margin-left: 10px; }
.m-left-20 { margin-left: 20px; }
.m-left-30 { margin-left: 30px; }

.m-rem-left-1 { margin-left: 1rem; }
.m-rem-left-1-5 { margin-left: 1.5rem; }
.m-rem-left-2 { margin-left: 2rem; }


/* 0.5 */
.td-p-05 th,
.td-p-05 td {
    padding: 0.5rem;
}

/* 1 */
.td-p-1 th,
.td-p-1 td {
    padding: 1rem;
}

/* 1.5 */
.td-p-15 th,
.td-p-15 td {
    padding: 1.5rem;
}

	.roding_layer {
	  background-color: #f0f0f0;
	  position: fixed;              /* absolute → fixed로 변경 */
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  display: none;
	  z-index: 5000;
	  opacity: 0.5;
	}

	/* 로딩 이미지 박스 */
	.roding_layer #div_load_image {
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  z-index: 9999;
	  background: #f0f0f0;
	  padding: 0;
	  text-align: center;
	}
.wrap_chart{ position: relative; border: 1px solid #D4D4D4; flex: 1;}
.wrap_chart.map{ display: flex; flex-flow: column nowrap; margin-bottom: 0px;}
.wrap_chart.map #kakaoMap{ flex: 1;}



/* .dataTotalCntLabelContainer {
    background-color: #f2f2f2; 연한 회색 배경
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.dataTotalCntLabel {
    font-size: 3rem;
    text-align: left;
    color: #333;
    font-weight: 500;
}

.dataTotalCntLabel .year-month-highlight {
    color: #0052cc; 대비되는 진한 파랑 계열
    font-weight: 700;
} */

.dataTotalCntLabelContainer {
    margin: 14px 0 12px;
    padding: 0;
}

.dataTotalCntLabel {
    display: flex;
    align-items: center;

    min-height: 58px;
    padding: 14px 20px;

    background: #f3f8ff;
    border: 1px solid #cbdcf2;
    border-left: 6px solid #2f6fbd;
    border-radius: 8px;

    box-sizing: border-box;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
}
.dataTotalCntLabel .year-month-highlight {
    color: #0052cc; /* 대비되는 진한 파랑 계열 */
    padding-right: 20px;
}

/* 아이콘 */
.dataTotalCntLabel::before {
    content: "✓";

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;
    width: 30px;
    height: 30px;

    margin-right: 13px;

    border-radius: 50%;
    background: #2f6fbd;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/* 총 건수 등 강조 */
.dataTotalCntLabel strong {
    display: inline-block;

    margin: 0 5px;

    color: #1458a0;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}


.filter-item.vertical {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 1.3rem !important;
    font-size:1.5rem !important;
    gap:0;
}

.filter-item.vertical .ctgry-img {
    width: 5.0rem !important;
    height: 5.0rem !important;
}

.bbs-content {
  /* max-width: 800px; */
  word-wrap: break-word;
  word-break: break-all;
  white-space: break-spaces !important;
}

.file-info-box {
color: #0c5460;              /* 글자색: 짙은 청록 */
    border: 1px solid #bee5eb;   /* 테두리: 연한 하늘색 */
    background-color: #d1ecf1;   /* 배경: 밝은 하늘색 */
    border-radius: 0.4rem;
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.file-list ul li{
    display: flex !important;
}
.file-list ul li i{
    margin-left: 1.5rem;
    align-content: center;
}
.cursor-point {
  cursor: pointer;
}

.max-fit {
  max-width: fit-content !important;
}
.table-fixed {
  table-layout: fixed !important;
}

.text-preline {
  white-space: pre-line !important;
}
.cell-scroll {
  height: 800px;          /* 원하는 고정 높이 */
  overflow-y: auto;       /* 세로 스크롤 */
  overflow-x: hidden;     /* 가로 스크롤 숨김 (필요 시 auto 로 변경) */
  white-space: normal;    /* 줄바꿈 허용 */
  box-sizing: border-box; /* 패딩 포함 */
  padding-right: 6px;     /* 스크롤바 겹침 여유 */
  scrollbar-gutter: stable; /* 스크롤 유무로 레이아웃 흔들림 방지(지원 브라우저) */
}

.font-color-red {
    color: red;
}
.margin-0{
	margin: 0;
}
.margin-top-20{
	margin-top: 20px;
}


.kakaoMapContainer{
	width: 100%;
	flex:1;
}

/* legend */
.legend{ justify-content: flex-end;}
.legend li{ padding-bottom: 2px;}


.scroller_table
{
	max-height: 400px;
	overflow:auto !important;
}

.scroller_table table {
  border-collapse: collapse;
  width: 100%;
}

/* 헤더 고정 */
.scroller_table thead th {
  position: sticky;
  top: 0;
  z-index: 2;         /* 내용보다 위에 보이도록 */
}


.card-content .bb {
  height: 100%;
}
.card-content  svg {
  height: 100% !important;
  width: 100% !important;
}




.map_legend_4 {
	position: absolute;
	bottom: 4%;
	left: 1.5%;
    width: 260px;
    background: #fff;
    border: 1px solid #000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10px;
    z-index: 2;
}
.map_legend_4-title {
    background: #333;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}
.map_legend_4-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.map_legend_4-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.map_legend_4-item:nth-child(2) .map_legend_4-circle { background: #4c94d4; } /* 파랑 */
.map_legend_4-item:nth-child(3) .map_legend_4-circle { background: #ec7c34; } /* 빨강 */
.map_legend_4-item:nth-child(4) .map_legend_4-circle { background: #acacac; } /* 회색 */
.map_legend_4-item:nth-child(5) .map_legend_4-circle { background: #ffc404; } /* 주황 */
.map_legend_4-text {
    flex-grow: 1;
}
.map_legend_4-arrow-up::after {
    content: "▲";
    color: #333;
    margin-left: 2px;
    margin-right: 2px;
}
.map_legend_4-arrow-down::after {
    content: "▼";
    color: #333;
    margin-left: 2px;
    margin-right: 2px;
}

/* 테마분석 - 10개의 범례 표시*/
/* #map_legend_10 {
    position: absolute;
    bottom: 4%;
    left: 1.5%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    z-index: 2;
}
#map_legend_10 h3 {
    background: #333;
    color: white;
    margin: 0;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px 4px 0 0;
}
#map_legend_10 .legend-item {
    display: flex;
    align-items: center;
    margin: 4px 0;
}
#map_legend_10 .legend-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #888;
} */

/**/

        .landInfo-title {
			font-size: 18px;
            font-weight: bold;
            margin-top: 3px;
            max-width: 270px;
		}

		.landInfo-title-h2 {
			font=size: 10px;
			font-weight: bold;
			margin-top: 15px;
		}

		.landInfo-divider {
			border-bottom: 2px solid #000;
            margin: 5px 0 10px;
		}

		.landInfo-table {
            width: 100%;
            max-width: 300px;
            border-collapse: collapse;
            border: 1px solid #ccc;
            table-layout: fixed;
            word-break: break-word;
        }

        .landInfo-table th, .info-table td {
            border: 1px solid #ccc;
            padding: 8px;
            text-align: center;
            font-size: 14px;
            word-wrap: break-word;
            white-space: normal;
        }

        .landInfo-table th {
            color: black;
            text-align: center;
        }

        .landInfo-table tr:first-child th {
            background: #dbe4f3;
            color: black;
        }

 .table-header {
  display: flex;
  justify-content: flex-start; /* 오른쪽 정렬 */
  margin-bottom: 8px;        /* 테이블과 간격 */
}

.record-count {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;            /* 진한 회색 */
  background-color: #f5f5f5; /* 연한 회색 배경 */
  padding: 4px 10px;
  border-radius: 6px;
}
.sjview-card-title
{
    display: flex !important;
    justify-content: start;
    margin-left: 1rem;
    align-items:center;
    font-size: 2.5rem !important;
    gap: 1rem;
}
.dataList
{
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    flex: 1;
}
.up{
   color: #c62828;
}
.down{
	color: #19357E;
}


.swal2-selectContestType {
  display: flex !important;
  gap: 10px;
}

.swal2-selectContestType .swal2-confirm,
.swal2-selectContestType .swal2-deny {
  min-width: 150px;   /* 👉 여기 값으로 길이 맞춤 (핵심) */
  height: 60px;
  white-space: normal;
  text-align: center;
}


/* 파일 업로드 상태  */
.mini-progress {
    position: relative;
    width: 60px;
    height: 60px;
}

/* 위에서 시작 */
.mini-progress svg {
    transform: rotate(-90deg);
}

/* 배경 */
.mini-progress .bg {
    fill: none;
    stroke: #eee;
    stroke-width: 5;
}

/* 진행 */
.mini-progress .progress {
    fill: none;
    stroke: #4caf50;
    stroke-width: 5;
    stroke-linecap: round;

    stroke-dasharray: 163; /* 2πr (r=26) */
    stroke-dashoffset: 163;

    transition: stroke-dashoffset 0.3s ease;
}

/* 중앙 텍스트 */
.mini-progress .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

/* 완료 상태 */
.mini-progress.complete .text {
    font-size: 16px;
    color: #4caf50;
}
.mini-progress.complete .progress {
    stroke: #2196f3; /* 완료 색 */
}
/* ⚪ 기본 안내 (회색) */
.text-muted {
    margin-top: 5px;
    font-size: 12px;
    color: #888;           /* 기존 안내 색상 */
}

/* 🔴 중요 안내 */
.text-important {
    margin-top: 5px;
    font-size: 12px;
    color: #d32f2f;
    font-weight: 600;
}

/* 🟠 주의 */
.text-warning {
    margin-top: 5px;
    font-size: 12px;
    color: #f57c00;
    font-weight: 500;
}

/* 🔵 정보 */
.text-info {
    margin-top: 5px;
    font-size: 12px;
    color: #1976d2;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-footer img {
    display: block;
    height: 48px;
    width: auto;
}

.logo-footer .logo-footer-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;

    background: linear-gradient(90deg, #002679 0%, #0b4fa3 50%, #00a6b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.data-notice-box {
    margin: 15px 0 20px;
    border: 1px solid #d6e2f1;
    border-left: 4px solid #3478d4;
    border-radius: 7px;
    background: #f8fbff;
    overflow: hidden;
    box-sizing: border-box;
}

.data-notice-title {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #eef5ff;
    border-bottom: 1px solid #dce7f5;
    color: #245b9e;
    font-size: 15px;
    font-weight: 700;
}

.notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    margin-right: 8px;
    border-radius: 50%;
    background: #3478d4;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.data-notice-content {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #444;
}

.notice-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 7px;
}

.notice-row:last-child {
    margin-bottom: 0;
}

.notice-label {
    flex: 0 0 100px;
    position: relative;
    font-weight: 700;
    color: #333;
}

.notice-label::before {
    content: "•";
    margin-right: 6px;
    color: #3478d4;
}

.notice-text {
    flex: 1;
}

.notice-caution {
    margin-top: 9px;
    padding: 9px 10px;
    background: #fff8e8;
    border: 1px solid #f0dfae;
    border-radius: 5px;
}

.notice-caution .notice-label::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border-radius: 50%;
    background: #e8a722;
    color: #fff;
    font-size: 11px;
}

.ms-info {
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px dashed #ccd8e6;
    color: #666;
    font-size: 12px;
}

.ms-info strong {
    color: #245b9e;
}

.section-content.card-notice-section {
    margin-top: 2rem;
}