html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100svh;  /* ✅ 핵심 */
  overflow: hidden;
  box-sizing: border-box;
}

main {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

@supports not (height: 100dvh) {
  main {
    height: 100vh; /* 완전 구형 대응 */
  }
}
/** 검색 **/
:root {
  /* --theme-color: #073f28c4; */
  /*--theme-color: #258fff;*/
  --theme-color: #EE6B37FF;
  --nomal-color: #6c757d;
  --active-text: white;
  /* 테마 색상 */
}

.dropdown-toggle {
  outline: 0;
}

.btn-toggle {
  padding: .25rem .5rem;
  font-weight: 600;
  color: var(--bs-emphasis-color);
  background-color: transparent;
}

.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(var(--bs-emphasis-color-rgb), .85);
  background-color: var(--bs-tertiary-bg);
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

[data-bs-theme="light"] .btn-toggle::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(var(--bs-emphasis-color-rgb), .85);
}

.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: var(--bs-tertiary-bg);
}

.scrollarea {
  overflow-y: auto;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100svh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.bi2 {
  stroke-width:2;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

.sidebar {
  width: 60px;
  background-color: #ffffff;
  color: #343a40;
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  transition: width 0.3s;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  z-index: 9999 !important;
  isolation: isolate;
}

/* Side content panel */
.side-content {
  width: var(--side-content-width, 420px);
  position: fixed;
  top: 0;
  left: 60px;
  height: 100%;
  background-color: #f8f9fa;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
  z-index: 990;
  padding: 10px;
  transform: translateX(-120%);
  transition: transform 0.3s ease;
  -webkit-overflow-scrolling: touch; /* 모바일 관성 스크롤 활성화 */
}

#sub_image .m-scroll {
  height: calc(100% - 220px);
}

#sub_image table {
  table-layout: fixed;
  width: 100%;
}

#sub_image td,
#sub_image th {
  white-space: normal;
  word-break: break-word;
}

.side-content.show {
  transform: translateX(0);
}

/* 현장조사 패널 - 다른 메뉴(990)보다 높고, 사이드바(1100)보다 낮게 설정 */
#sub_field_survey {
  z-index: 1020;
  transform: translateX(-100%); /* 사이드바 경계에서 시작 (기본 -120% 대신) */
}
#sub_field_survey.show {
  transform: translateX(0);
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .side-content {
    left: 60px;
    width: calc(100vw - 60px);
    height: 100svh;
    transform: translateX(-100%);
  }
  .side-content.show {
    transform: translateX(0);
  }
}

.sidebar-ico-label {
  display: block;
  margin-top: 1px;
  letter-spacing: -1px;
  color: var(--nomal-color);
  font-size: 0.7rem;
  text-align: center;
}

.nav {
  --bs-nav-link-padding-x: 0.9rem !important;
}

.nav-div {
  z-index: 1000;
}


/* Map container */
.map-content {
  margin-left: 60px;
  width: calc(100% - 60px);
}

.map-container {
  width: 100%;
  height: 100dvh;
}

.custom_active {
  background-color: var(--theme-color) !important;
}

.custom_active_svg {
  color: var(--theme-color) !important;
  /** fill: #073f28c4 !important; **/
  stroke: var(--theme-color) !important;
}

.custom_active_text {
  color: white !important;
  /* fill: white !important; */
  stroke: white !important;
}

.custom_active_page {
  color: white !important;
  /* fill: white !important; */
  background-color: var(--theme-color) !important;
}

.custom_nomal_svg {
  color: #6c757d;
  stroke: #6c757d;
  /** fill: #6c757d **/
}



body {
  font-size: 0.9rem;
  line-height: 1.4;
}

.nav-tabs .nav-link.active {
  /* background-color: var(--theme-color); */
  color: var(--theme-color);
  font-weight: bold;
  /* border-color: var(--theme-color); */
}

.nav-tabs .nav-link {
  color: var(--nomal-color);
}

.nav-tabs .nav-link:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.btn-primary {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.btn-primary:hover {
  background-color: #065c3e;
  border-color: #065c3e;
}

.result-title {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 0.85rem;
}

.result-category {
  font-size: 0.85rem;
  color: #6c757d;
  margin-left: 0.5rem;
}

.result-divider {
  border-top: 1px solid #ddd;
  margin: 0.8rem 0;
}

.result-address {
  padding: 0.4rem;
  background-color: #f9f9f9;
  border-radius: 0.25rem;
  font-size: 0.85rem;
}

.pagination .page-link {
  font-size: 0.9rem;
  padding: 0.3rem 0.45rem;
  color: var(--theme-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: white;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: var(--theme-color);
}

/** 툴바 **/

.tool_area {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  /* 적절한 여백 추가 */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* 우측 정렬 */
  z-index: 980;
}

.toolbar-btn-group {
  border: 1px solid #ccc;
  /* 버튼 그룹 테두리 */
  border-radius: 8px;
  /* 버튼 그룹 전체 테두리 라운드 */
  overflow: hidden;
  /* 테두리 밖 내용 숨기기 */
}

.toolbar-btn-group-horizon {
  background-color: var(--theme-color);
  /* 기본 버튼 배경색 */
}

.btn-group-vertical {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* 버튼 너비를 동일하게 */
}

.toolbar-btn-group button {
  border: none;
  /* 버튼 기본 테두리 제거 */
  border-radius: 0;
  /* 개별 버튼은 라운드 제거 */
  box-shadow: none;
  /* 그림자 제거 */
}

.toolbar-btn-group .btn {
  background-color: white;
  color: var(--nomal-color) !important;
  position: relative;
  stroke: var(--nomal-color) !important;
}

.toolbar-btn-group .btn:hover {
  background-color: var(--theme-color);
  /* hover 시 더 어두운 녹색 */
  color: white !important;
  stroke: white !important;
}

.toolbar-btn-group .active {
  background-color: var(--theme-color);
  /* hover 시 더 어두운 녹색 */
  color: white !important;
  stroke: white !important;
}

.toolbar-layer-sub {
  position: absolute;
  top: 5.5rem;
  right: 4.5rem;
  /* 적절한 여백 추가 */
  display: flex;
  /* 우측 정렬 */
  z-index: 1030;
  max-width: 420px;
  width: 420px;
  min-width: 420px;
  flex: 0 0 420px;
  min-height: 360px;
}

.toolbar-layer-sub .card {
  width: 100%;
}
.tool-map-mobile-menu{
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.toolbar_curtain-sub{
  position: absolute;
  top: 16.5rem;
  right: 4.5rem;
  display: flex;
  z-index: 1030;
  max-width:230px;
}

.layer-group-label {
  display: block;
  font-size: 1rem;
  color: #888;
  padding: 15px 0 8px;
  border-bottom: 1px solid #e2e2e2;
}

.form-check-label {
  white-space: normal;
  word-break: keep-all;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.2rem;
}

.layer-check {
  margin-bottom: 0.2rem
}

.layer-accordion .accordion-button {
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  background-color: transparent;
  box-shadow: none;
  border: none;
  font-weight: 700;
  color: #2b2b2b;
  border-bottom: 1px solid #e4e4e4;
}

.layer-accordion .accordion-button::after {
  transition: transform 0.2s ease;
}

.layer-accordion .accordion-button.collapsed::after {
  transform: rotate(-90deg);
}

.layer-accordion .accordion-body {
  padding: 0.5rem 0.75rem;
}

.layer-accordion .accordion-item + .accordion-item {
  margin-top: 6px;
}

.layer-accordion .accordion-item {
  border: none;
}

.layer-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;
  box-shadow: none;
}

.data-source {
  font-size: 0.7rem;
  /* 더 작은 글씨 크기 */
  color: #6c757d;
  /* 연한 회색 */
  margin-top: 5px;
}

.hide {
  display: none !important;
}

.keyword_highlight {
  box-shadow: 0 -8px #c7fff4c2 inset;
  vertical-align: baseline;
}
/** 검색결과 **/
.search-res-list{
  height: 95%;
  overflow-y: auto;
}
.search-res-cnt{
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  line-height: 1;
  margin-right: 4px;
}

.search-res-ctg{
  display: flex;
  align-items: center;
  color: rgba(128, 128, 128, 0.73);
  font-size: 11px;
  line-height: 1;
}
.result-item{
  cursor: pointer;
}
.result-item .adr{
  display: flex;
  gap: 4px;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1.3;
  padding-top: 1px;
}
.result-item .adr.old::before {
  content: "지번";
  background-color: #9999a1;
}
.result-item .adr::before {
  margin-right: 2px;
  content: "도로명";
  display: inline-block;
  height: 16px;
  line-height: 16px;
  color: #fff;
  font-size: 10px;
  border-radius: 3px;
  background-color: #6b6bdc;
  padding: 0 4px;
  margin-top: -1px;
}
.result-item:hover{
  background-color: #f9f9f9;
}
.result-item .adr .addr {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.left-tab-content{
  height: 85%;
}
.sarch-list-ico{
  max-height: 20px;
  /* margin-top: -2px; */
  margin-bottom: -13px;
  margin-left: 3px;
  margin-right: -4px;
}
.select-box-farm select{
  height: 32px;
  width: 200px;
  line-height: 32px;
  vertical-align: middle;
  border: 1px solid #c2ccd9;
  border-radius: 3px;
  padding: 0 0px 0 10px;
  color: #1d222c;
  transition: all 0.3s;
  background: #eaf3f1;
}
.select-box-farm select:hover{
  border-color: #6dbacd;
  transition: all 0.3s;
}

.select-box-farm{
  display: block;
  /*position: absolute;*/
  /*top: 65px;*/
  width: 320px;
  /* left: 0px; */
  background: #fff;
  font-size: 13px;
  /*border-radius: 0px 0px 5px 5px;*/
  padding: 10px 0;
  /*box-sizing: border-box;*/
  /*box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);*/
  /*z-index: 9999;*/
}

.select-box-farm th{
  text-align: left;
  padding: 5px 0 5px 20px;
}

.w-83{
  width:83%!important;
}

.custom-checkbox:disabled {
  opacity: 0; /* 반투명 효과 */
}

.toolbar-drone-legend {
  position: fixed;
  bottom: 60px;
  right: 10px;
  width: 200px;
  height: 250PX;
  border: 1px solid #ddd;
  background: white;
  padding: 5px;
}
.toolbar-drone-legend-label {
  display: block;
  font-size: 1rem;
  color: #888;
  padding: 5px 0 5px 0;
  border-bottom: 1px solid #e2e2e2;
}
.toolbar-drone-legend .btn-close-pos {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}

.main_logo{
  width:46px;
}

.infodetail {
  position: fixed;
  top: -10px;
  left: calc(60px + var(--side-content-width, 420px));
  width: 350px;
  height: 70%;
  border: 1px solid #ddd;
  background: white;
  padding: 0px;
  -webkit-overflow-scrolling: touch; /* 모바일 관성 스크롤 활성화 */
  /*padding-top:0px;*/
}
.infodetail .infotitle {
  display: block;
  font-size: 1rem;
  color: #6d6b6e;
  /*padding: 5px 0 5px 0;*/
}
.infodetail .btn-close-pos {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}
.infodetail .content-header {
  height: 2.5rem!important;
}
.infodetail .content-body {
  height: 80%;
}

.field-survey-cluster {
  position: fixed;
  top: -10px;
  left: calc(60px + var(--side-content-width, 420px));
  width: 360px;
  height: 60%;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0px;
  -webkit-overflow-scrolling: touch;
}
.field-survey-cluster .content-header {
  position: relative;
}
.field-survey-cluster .content-body {
  height: 85%;
  display: flex;
  flex-direction: column;
}
.field-survey-cluster-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 6px;
}
.field-survey-cluster-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.field-survey-cluster-item img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f3f5;
}
.field-survey-cluster-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.field-survey-cluster-meta strong {
  font-size: 0.9rem;
  color: #1f2937;
}
.field-survey-cluster-meta span {
  font-size: 0.75rem;
  color: #6b7280;
}
.field-survey-cluster-meta em {
  font-size: 0.7rem;
  color: #9ca3af;
  font-style: normal;
}

.field-survey-detail-page {
  background: #f4f6f9;
  min-height: 100vh;
  padding: 8px 8px;
  box-sizing: border-box;
}
.field-survey-detail-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #e6e8eb;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: #fff;
  overflow: hidden;
  height: auto;
  max-height: none;
}

.field-survey-editing .field-survey-detail-card {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.field-survey-detail-hero {
  background: #111827;
  color: #fff;
  padding: 20px 24px;
}
.field-survey-detail-hero h1 {
  font-size: 1.35rem;
  margin: 0 0 6px 0;
}
.field-survey-detail-hero p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.field-survey-detail-body {
  padding: 20px 24px 24px;
}
.field-survey-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.field-survey-detail-address {
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 14px;
}
.field-survey-detail-chip {
  background: #eef6f0;
  color: #0d9302;
  border: 1px solid #cfe7d0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
}
.field-survey-detail-image {
  border-radius: 16px;
  overflow: hidden;
  background: #f1f3f5;
  border: 1px solid #e6e8eb;
  margin-bottom: 18px;
  position: relative;
}
.field-survey-detail-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
}
.field-survey-original-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(17, 24, 39, 0.85);
  border: 0;
}
.field-survey-original-btn:hover {
  background: rgba(17, 24, 39, 0.95);
}
.field-survey-detail-section label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.field-survey-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.field-survey-edit-form {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .field-survey-cluster {
    width: calc(100vw - 60px);
    height: 100svh;
    left: 60px;
    top: 0;
    transform: none;
  }
  .field-survey-detail-page {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .infodetail {
    left: 60px;
    top: 0;
    width: calc(100vw - 60px);
    height: 100svh;
    transform: none;
    max-height: 100svh;
    overflow-y: auto;
  }
  .field-survey-detail-card {
    max-width: 96vw;
    margin: 0 auto;
  }
  .field-survey-detail-image img {
    max-height: 280px;
  }
  .field-survey-detail-actions {
    justify-content: center;
  }
}

.datagrid {
/*  --tblr-datagrid-padding: 0.5rem; */
  --tblr-datagrid-item-width: 15rem;
/* display: grid; */
grid-gap: var(--tblr-datagrid-padding);
grid-template-columns: repeat(auto-fit, minmax(var(--tblr-datagrid-item-width), 1fr));
}

.datagrid-title {
  font-size: 0.8rem;
  font-weight: var(--tblr-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1rem;
  color: var(--tblr-secondary);
  margin-bottom: 0.25rem;
}

.mb-0{
  margin-bottom: 0px!important;
}
.predict-detail{
  position: fixed;
  top: -10px;
  left: calc(60px + var(--side-content-width, 420px));
  min-width: 360px;
  width: 21%;
  height: 100%;
  border: 1px solid #ddd;
  background: #f8f9fa;
  padding: 0px;
  -webkit-overflow-scrolling: touch; /* 모바일 관성 스크롤 활성화 */
}
.predict-detail .infotitle {
  display: block;
  font-size: 1rem;
  color: #6d6b6e;
  padding: 5px 0 5px 0;
}

.predict-detail .content-body {
  height: 90%;
  background-color: #f6f8fb;
  --bs-gutter-x: 1rem!important;
}

.predict-detail .btn-close-pos {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}

.expand-div{
  left:60px!important;
  width:45%!important;
}

.btn-right-top{
  position: absolute;
  top:1.25rem;
  right:2%
}
.btn-left-top{
  position: absolute;
  top:0.6rem;
  left:120px;
}
.btn-right-top-predict {
  position: absolute;
  top: 0.6rem;
  right: 10%;
}
.tb-btn-predict {
  margin-left: 30px;
  --bs-btn-padding-y: 0.1rem;
  --bs-btn-padding-x: 0.4rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.datagrid-content{
  font-size:0.9rem;
  margin-bottom:0.5rem;
}
@media (min-width: 355px) {
  .ct-col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 700px) {
  .ct-col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.ndvilegend{
  height:250px!important;
}
.ndvilegendol{
  height:180px!important;
}
.Legend-Pop{background-color: #f6f8fb;
  width: 220px;
  height: 300px;
  bottom: 60px;
  right: 63px;
  padding: 5px;}
.Legend-Pop .close-BL{right: 10px; top: 12px;}
.Legend-Pop .popup-wrap{width: 210px; height: 250px; overflow-y: auto; overflow-x: hidden;}
.Legend-Pop .popup-wrap ol{width: 100%; height: 100%; max-height: 240px; padding-right: 10px; padding-left:1rem;}
.Legend-Pop .popup-wrap ol li{width: 100%; height: auto; min-height: 30px; display: flex; align-items: center; color: var(--tblr-gray-dark); font-size: 10px; opacity: 0.8;}
.Legend-Pop .popup-wrap ol li span{width: calc(100% - 30px); display: block; line-height: 15px; height: auto; height: auto;}
.Legend-Pop .popup-wrap ol li em{display: block; width: 15px; height: 15px; margin-right: 10px;}
.Legend-Pop .popup-wrap ol li b{width: auto; min-width: 20%; color: var(--tblr-secondary); padding-right: 10px; position: relative;}
/** 기존 인도네이시아 범례**/
/*.Vl-Lv1{background-color: #00F500;}*/
/*.Vl-Lv2{background-color: #5BF700;}*/
/*.Vl-Lv3{background-color: #8CF700;}*/
/*.Vl-Lv4{background-color: #BAF700;}*/
/*.Vl-Lv5{background-color: #E0F500;}*/
/*.Vl-Lv6{background-color: #F7DF00;}*/
/*.Vl-Lv7{background-color: #FCB100;}*/
/*.Vl-Lv8{background-color: #FC8200;}*/
/*.Vl-Lv9{background-color: #FA4F00;}*/
/*.Vl-Lv10{background-color: #F50000;}*/
/*.Vl-Lv11{background-color: #FF0000;}*/
/** 251125 NDVI 범례 변경 **/
.Vl-Lv6{background-color: #4575B4;}
.Vl-Lv5{background-color: #D9EF8B;}
.Vl-Lv4{background-color: #FEE08B;}
.Vl-Lv3{background-color: #A6D96A;}
.Vl-Lv2{background-color: #1A9850;}
.Vl-Lv1{background-color: #00441B;}

.table-head {
  text-align: center;
  vertical-align: middle;
}

.vt-md{
  vertical-align: middle;
}

.wfs-info,
.soil-info{
  position: absolute;
  background-color: #eeeeee;
  display: none;
}
.wfs-info{
  width: 310px;
  height: 330px;
}
.soil-info{
  width: 280px;
  height: 280px;
}
.wfs-info .info-label,
.soil-info .info-label {
  display: block;
  font-size: 1rem;
  color: #000000;
  padding: 5px 0 5px 0;
  border-bottom: 1px solid #e2e2e2;
}
.wfs-info .btn-close-pos,
.soil-info .btn-close-pos {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}
.wfs-info .card-height,
.soil-info .card-height{
  height: 83%;
  margin-top: -5px;
  /*padding-top:1px;*/
  /*padding-bottom:1px;*/
}
.wfs-info .card-height{
  display: flex;
  flex-direction: column;
}
.wfs-info .card-height .tab-content{
  flex: 1 1 auto;
  min-height: 0;
}

/** 셀렉트 박스 **/
.condition {
  padding: 0 14px;
}

.condition select:first-child:last-child {
  width: 100%;
}

.condition select{
  display: block;
  width: 115px;
  min-width: 0;
  float: left;
  height: 35px;
  border-radius: 3px;
  color: #333;
  letter-spacing: -.05em;
  border: 1px solid #e1e1e1;
}
.condition select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 20px;
  width: auto;
  min-width: 200px;
  background: url(/img/select.png) right center no-repeat;
}
.condition select {
  box-sizing: border-box;
  display: block;
  vertical-align: middle;
  border: 1px solid #e1e1e1;
  height: 35px;
  font-size: 15px;
  padding: 3px 3px 3px 9px;
  line-height: 27px;
  border-radius: 0;
  margin: 0;
  width: 100%;
  border-radius: 3px;
}
.condition .search-btn-div{
  text-align: right;
  margin-right: 3px;
}

.btn-close-pos-g {
  position: relative;
  top: -1px;
  left: 3px;
  width: 0.4em !important;
  height: 0.4em !important;
  z-index: 10;
}

/** 필지 속성 조회 스타일 **/
.lot-info-pop {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  width: 500px;
  max-width: 800px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 1050;
  padding: 10px;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}
.property-table {
  width: 100%;
  margin-top: 15px;
}
.property-table th {
  width: 30%;
  background-color: #f8f9fa;
}
.pop-header{
  padding-bottom: 8px;
  border-bottom: 1px solid #cccaca8a;
}

.readonly-input {
  /*background: #8f98a13b!important;*/
  border: none;
  outline: none;
}
.lot-info-pop-tb-warp{
  max-height: 100%;
  overflow-y: auto;
}
.pie-chart-wrap{
  max-height:400px
}

.side-content .btn-close-pos{
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}

.sub-header{
  height: 30px;
  /* flex: none; */
  display: flex;
  align-items: center;
  width: 100%;
  /* height: 48px; */
  border-bottom: 1px solid #eaebec;
  /* padding: 8px 8px 8px 16px; */
  margin-bottom: 8px;
  margin-top:5px;
}
.sub-header .sub-title{

}

.option-label {
  font-size: 0.9333rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/** 필지 속성 조회 스타일 **/
.lot-info-pop_left {
  /* display: block; */
  /* position: fixed; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  /* max-width: 800px; */
  background: #f8f8f8;
  /* border-radius: 8px; */
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); */
  z-index: 1050;
}
.h-90{
  height:90%
}

.h-100-ni{
  height:100%
}
/* ======================================================
    Common - Loading
======================================================*/
.loading.active{display: block; opacity: 0.8; visibility: visible; z-index:1040;}
.loading{display: none; visibility: hidden; opacity: 0; position: absolute; background-color: rgba(0,0,0,0.5);  z-index: 99; top: 49%; left: 49%;}
.loading img{width: 45px; height: 45px; position: absolute; top: 50%; animation: loading 1s infinite linear; left: 50%; margin-top: -29.5px; margin-left: -22.5px;}
.loading span{display: block; color: #88d5ea; position: absolute; top: 50%; font-weight: 900; left: 50%; font-size: 12px; margin-top: 40px;text-transform: capitalize; transform: translate(-50%, -50%); text-align: center;}
@keyframes loading{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cursor-pointer {
  cursor: pointer !important;
}

/* === Custom Styles for Thin Accordion Header === */
.accordion-thin-header .accordion-item {
  border: none;
  background-color: transparent;
}
.accordion-thin-header .accordion-header {
  margin-bottom: 0 !important;
}
.accordion-thin-header .accordion-button {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border: none;
  background-color: #f8f9fa;
  border-radius: 0;
}
.accordion-thin-header .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-thin-header .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #e9ecef;
  box-shadow: none;
}
.accordion-thin-header .accordion-button.collapsed {
  border-radius: 0;
}

/* Optional: Adjust the accordion body if needed */
/* .accordion-thin-header .accordion-body { ... } */

/* Filter Section Styles */
.filter-section {
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: .375rem;
  background-color: #f8f9fa;
  border-top: none; /* Assuming it sits right below header */
}
.filter-label { font-weight: 500; }
/*.input-group .form-control { margin-left: 0.25rem; margin-right: 0.25rem; }*/
.input-group .form-control:first-child { margin-left: 0; }
.input-group .form-control:last-child { margin-right: 0; }

.table.table-hover > tbody > tr.active > td {
  background-color:  #e0e5e9 !important;
}

/**
수확량 예측 폴리곤 범례
 */
.legend-container {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 320px; /* Adjusted width for vertical layout */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legend-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 20px;
  text-align: center;
  color: #2c3e50;
}
.gradient-display-area {
  display: flex;
  align-items: flex-start; /* Align labels to the top of their segment */
  width: 100%;
  margin-bottom: 15px;
  overflow-y: auto;
}
.vertical-gradient-bar {
  width: 30px; /* Width of the gradient bar */
  height: 325px; /* Total height for the 0-500+ range, adjusted for labels */
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Prevent shrinking */
}
.color-segment {
  width: 100%;
  flex-shrink: 0; /* Prevent segments from shrinking */
}
.gradient-labels {
  flex-grow: 1;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute labels vertically */
  height: 325px; /* Match gradient bar height */
  position: relative; /* For absolute positioning of labels */
}
.label-point {
  position: absolute;
  left: 0;
  transform: translateY(-50%); /* Center vertically on the line */
  font-size: 0.9em;
  color: #555;
  white-space: nowrap; /* Prevent line breaks */
}
.label-point.top-align {
  transform: translateY(0%); /* Align to top of segment */
}
.special-zero-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  width: 100%;
  padding-left:1px;
  justify-content: left;
}
.color-box-zero {
  width: 29px;
  height: 25px;
  border: 1px solid #FF0000; /* Red border for gray_index=0 */
  border-radius: 4px;
  margin-right: 12px;
  background-color: #FFFFFF;
  opacity: 0.2;
  flex-shrink: 0;
}
.legend-text {
  font-size: 0.95em;
  color: #555;
}
.value-range {
  font-size: 0.85em;
  color: #777;
}

@media (min-width: 760px) {
  .d-sm-flex {
    display: flex !important;
  }
}

@media (max-width: 760px) {
  .pop-mobile {
    left:60px!important;
    z-index:1035;
    width:22rem!important;
  }
  .toolbar-layer-sub{
    right: 3.25rem;
    top: 5.5rem;
    width: 260px;
    max-width: 260px;
    min-width: 0;
    min-height: 0;
    height: 70vh;
    max-height: 70vh;
  }
  .toolbar-layer-sub .card{
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .toolbar-layer-sub .card-body{
    flex: 1 1 auto;
    max-height: 100%;
    overflow-y: auto;
  }
  .toolbar-layer-sub .row > [class^="col-"],
  .toolbar-layer-sub .row > [class*=" col-"]{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 761px) {
  .pop-mobile-left {
    left: 60px;
    z-index: 1035;
    width: 22rem;
  }
}

.z1010{
  z-index:1010!important;
}
.z1020{
  z-index:1020!important;
}
.z1040{
  z-index:1040!important;
}

.page-item{
  font-size:10px;
}

.left-content-font{
  font-size: 14px;
}

.result-title-predict {
  font-weight: bold;
  font-size: 14px;
  color:#2f2e2e;
}

:root {
  --level-0: #8F8F8F;
  --level-1: #0085FF;
  --level-2: #FFEC4E;
  --level-3: #E56D0D;
  --level-4: #C91111;
  --normal: #3EC1FF;
}

/** 날씨 **/

.Legend-Pop-weather{
  /*width: 130px;*/
  /*height: 55px;*/
  width: 50px;
  height: 80px;
  bottom: 5px;
  right: 10px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: rgb(255 255 255 / 80%);
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
  cursor:pointer;
}


.level_0{border-color:  var(--level-0)!important; color: var(--level-0);}
.level_1{border-color:  var(--level-1)!important; color: var(--level-1);}
.level_2{border-color:  var(--level-2)!important; color: var(--level-2);}
.level_3{border-color:  var(--level-3)!important; color: var(--level-3);}
.level_4{border-color:  var(--level-4)!important; color: var(--level-4);}
.level_no{border-color:  var(--normal)!important; color: var(--normal);}

/* 날씨 */
.NB01{background-image: url("/img/weather/NB01.svg");} /* 맑음 */
.NB01-N{background-image: url("/img/weather/NB01-N.svg");} /* 맑음(밤) */
.NB02{background-image: url("/img/weather/NB02.svg");} /* 구름조금 */
.NB02-N{background-image: url("/img/weather/NB02-N.svg");} /* 구름조금(밤) */
.NB03{background-image: url("/img/weather/NB03.svg");} /* 구름많음 */
.NB03-N{background-image: url("/img/weather/NB03-N.svg");} /* 구름많음(밤) */
.NB04{background-image: url("/img/weather/NB04.svg");} /* 흐림 */
.NB07{background-image: url("/img/weather/NB07.svg");} /* 소나기 */
.NB08{background-image: url("/img/weather/NB08.svg");} /* 비 */
.NB11{background-image: url("/img/weather/NB11.svg");} /* 눈 */
.NB12{background-image: url("/img/weather/NB12.svg");} /* 비 또는 눈 */
.NB13{background-image: url("/img/weather/NB13.svg");} /* 눈 또는 비 */
.NB15{background-image: url("/img/weather/NB15.svg");} /* 안개 */
.NB16{background-image: url("/img/weather/NB16.svg");} /* 황사 */
.NB17{background-image: url("/img/weather/NB17.svg");} /* 박무(엷은안개) */
.NB18{background-image: url("/img/weather/NB18.svg");} /* 연무 */
.NB20{background-image: url("/img/weather/NB20.svg");} /* 가끔 비, 한때 비 */
.NB21{background-image: url("/img/weather/NB21.svg");} /* 가끔 눈, 한때 눈 */
.NB22{background-image: url("/img/weather/NB22.svg");} /* 가끔 비 또는 눈 한때 비 또는 눈 */
.NB23{background-image: url("/img/weather/NB23.svg");} /* 가끔 눈 또는 비 한때 눈 또는 비 */

.DBLGT{background-image: url("/img/weather/DBLGT.svg");} /* 낙뢰 */
.DB10{background-image: url("/img/weather/DB10.svg");} /* 빗방울 */
.DB12{background-image: url("/img/weather/DB12.svg");} /* 눈날림 */
/* 아이콘 사이즈 */
i {display: block; background-position: center; background-size: cover; background-repeat: no-repeat; flex-shrink: 0;}

.i62 {width: 62px; height: 62px;}
.i58 {width: 58px; height: 58px;}
.i42 {width: 42px; height: 42px;}
.i40 {width: 40px; height: 40px;}
.i38 {width: 38px; height: 38px;}
.i36 {width: 36px; height: 36px;}
.i34 {width: 34px; height: 34px;}
.i32 {width: 32px; height: 32px;}
.i30 {width: 30px; height: 30px;}
.i28 {width: 28px; height: 28px;}
.i26 {width: 26px; height: 26px;}
.i24 {width: 24px; height: 24px;}
.i22 {width: 22px; height: 22px;}
.i20 {width: 20px; height: 20px;}
.i18 {width: 18px; height: 18px;}
.i16 {width: 16px; height: 16px;}
.i14 {width: 14px; height: 14px;}
.i12 {width: 12px; height: 12px;}
.i10 {width: 10px; height: 10px;}
.i9 {width: 9px; height: 9px;}

.head-data{display: block; gap: 10px; align-content: center;}
.head-data dl{display: flex; flex-direction: column; gap: 0px;}
.head-data dt{font-size: 15px; margin-top: 5px; text-align:center;}
.head-data dd{font-size: 18px; font-weight: 600; }
.head-data dd.small{font-size: 12px; font-weight: 500; opacity: 1;}


.Legend-Pop-weather-detail{
  /*width: 130px;*/
  /*height: 55px;*/
  width: 330px;
  height: 150px;
  bottom: 5px;
  right: 63px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: rgb(255 255 255 / 80%);
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
  cursor:pointer;
  z-index:1002;
}

.weather-detail{
  position: relative;
  display: flex;
  padding: 5px 5px 0px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  box-sizing: border-box;
}

.weather-detail .weather_current_icon {
  width: 95px;
  height: 95px;
}
.blind {
  overflow: hidden !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  color: transparent !important;
  clip: rect(0px, 0px, 0px, 0px) !important;
}

.weather-detail .weather_current_icon_info .weather_current_icon_text {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgb(36, 36, 36);
  line-height: 17px;
  letter-spacing: -0.04px;
  text-align: center;
}

.weather-detail .weather_current_icon_info .weather_current_temperature {
  font-size: 35px;
  font-weight: bold;
  color: rgb(36, 36, 36);
  line-height: 46px;
}

.weather-detail .weather_current_icon_info {
  position: absolute;
  top: 15px;
  right: 142px;
  width: 112px;
  white-space: nowrap;
  text-align: center;
}

.weather-detail .weather_current_info_list {
  width: 140px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.2px;
}
.weather-detail .weather_current_info_list .weather_current_dt {
  font-weight: 600;
  color: rgb(108 107 107);
}
.weather-detail .weather_current_info_list .weather_current_dt, .weather-detail .weather_current_info_list .weather_current_dd {
  display: inline-block;
  vertical-align: top;
}
.weather-detail .weather_current_info_list .weather_current_dd {
   margin-left: 4px;
   font-weight: bold;
 }

.weather-pop-title{
  font-size: 14px;
  font-weight: bold;
  color: rgb(25, 25, 25);
  line-height: 21px;
  letter-spacing: -0.025em;
  display: block;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e2e2e2;
}

@media (max-width: 760px) {
  .Legend-Pop-weather-detail{
    /*width: 130px;*/
    /*height: 55px;*/
    width: 300px;
    height: 140px;
    bottom: 90px;
    right: 10px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgb(255 255 255 / 80%);
    background-clip: padding-box;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
    cursor:pointer;
    z-index:1040;
  }
  .bottom-coordinate{
    display: none;
  }
}
.coordinate-wrap{
  display: flex;
  gap: 8px;
  align-items: center;
  bottom: 5px;
  right:100px;
  position:absolute;
  z-index: 1001;
}

.coordinate-wrap .coordinate {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.coordinate-wrap  .coordinate p {
  font-size: 12px;
  font-weight: 500;
  color: rgb(22, 34, 239);
}

.context-menu-div {
  position: absolute;
  padding: 5px;
  background: rgba(0, 0, 0, .5);
  top: 41px;
  left: -21px;
  backdrop-filter: blur(20px);
  border: #000 solid 1px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .8);
  height:30px;
}

.context-menu-div .menu-ul {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin-top : 0px!important;
  padding-left : 0px!important;
}
.context-menu-div .menu-ul li {
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  /* padding: 5px; */
  width: 100%;
  text-align: center;
  border-radius: 2px;
  transition: all .2s ease-in-out;
}
.context-menu-div::before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 7px 7px;
  border-color: rgba(0, 0, 0, .8) transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-ul li:hover {
  background: #676666;
  font-size: 12.5px;
}

.roadview-div {
  position: absolute!important;
  top: 20px;
  left: 420px;
  width: 600px;
  height: 450PX;
  border: 1px solid #ddd;
  background: white;
  padding: 5px;
}

.roadview-div-inner {
  width: 100%;
  height: calc(100% - 35px);
}

.roadview-div-label {
  display: block;
  font-size: 1rem;
  color: #888;
  padding: 5px 0 5px 0;
  border-bottom: 1px solid #e2e2e2;
}
.roadview-div .btn-close-pos {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}
/* Predict table responsive */
.col-hide-sm { display: none; }
@media (min-width: 992px) {
  .col-hide-sm { display: table-cell; }
}
/* Predict table responsive: optional columns hidden by default, shown when expanded */
.col-optional { display: none; }
#predict_table_container.show-optional .col-optional { display: table-cell; }
#lot_table_container.show-optional .col-optional { display: table-cell; }
/* Image date filter spacing */
.img-date-filter label { font-size: 0.82rem; color: #6c757d; }
/* Map hover tooltip */
.map-tooltip {
  pointer-events: none;
  position: relative;
}
.map-tooltip-inner {
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  font-size: 12px;
  white-space: normal;
  max-width: 320px;
  word-break: break-word;
}
.map-tooltip.bottom { transform: translate(-50%, -100%); }
.map-tooltip.top { transform: translate(-50%, 0); }

.wrap-text {
  white-space: normal;
  word-break: break-word;
}
.pdf-clone,
.pdf-clone * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.pdf-clone ::-webkit-scrollbar,
.pdf-clone *::-webkit-scrollbar {
  display: none !important;
}
.pdf-clone .m-scroll,
.pdf-clone .content-body,
.pdf-clone .mCustomScrollBox,
.pdf-clone .mCSB_container {
  scrollbar-width: none;
}
.pdf-clone table,
.pdf-clone tr,
.pdf-clone td,
.pdf-clone th {
  page-break-inside: avoid;
  break-inside: avoid;
}

#global-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
}
#global-loading-overlay.show { display: flex; }
#global-loading-overlay .global-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}
#global-loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
}
/* Predict table column width tuning (expanded view) */
.pnu-col { width: 20%; }
.addr-col { width: 25%; }
.clsf-col { width: 13.75%; }
.area-col { width: 13.75%; }
.tot-col { width: 13.75%; }
.avg-col { width: 13.75%; }

#field_survey_cluster_modal .btn-close-pos {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0.5em!important;
  height: 0.5em!important;
  z-index: 10; /* 다른 요소 위에 표시되도록 설정 */
}
