/**
 * 개발자 정의 추가 CSS
 */
section[id^=icapp_alert_] {
    z-index: 999 !important;
}
.krds-main-modal .krds-btn.tertiary:hover,
.krds-main-modal .krds-btn.tertiary:active,
.krds-main-modal .krds-btn.tertiary:focus {
    background-color: rgb(103, 188, 241) !important;
    border-color: rgba(1, 120, 191, 0.75) !important;;
}
#ui-datepicker-div {
    display: none;
}
.krds-btn.xsmall.active {
    background-color: #2c2c6d;
    border: 1px solid rgb(84 84 186);
    color: #fff;
}
/* 드래그 앤 드롭 활성화 시 적용될 스타일 */
.file-upload.center.drag-over {
    background-color: #f0f8ff; /* 연한 하늘색 배경 */
    border: 2px dashed #007bff; /* 파란 점선 테두리 */
    opacity: 0.8;
}
#world-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marker-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none; /* 클릭 통과 */
}

/* 시야각(FOV) 부채꼴 스타일 */
.fov-cone {
    position: absolute;
    width: 0;
    height: 0;
    /* CSS로 삼각형 만들기 */
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid rgba(255, 0, 0, 0.3); /* 반투명 붉은색 */

    /* 회전축을 삼각형의 꼭짓점(아래쪽)으로 설정 */
    transform-origin: center bottom;

    /* --- 그라데이션 마스크 추가 --- */
    /* 표준 속성 */
    mask-image: radial-gradient(circle at bottom center, black 30%, transparent 90%);
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;

    /* 웹킷 브라우저(Chrome, Safari 등) 호환성용 */
    -webkit-mask-image: radial-gradient(circle at bottom center, black 30%, transparent 90%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;

    /* 핀보다 뒤에 오도록 배치 */
    top: -50px; /* 크기에 맞춰 위로 올림 */
    z-index: -1;

    /* 부드러운 회전 애니메이션 (선택사항) */
    transition: transform 0.1s linear;
}

#minimap .marker {
    z-index: 99;
    transform: translate(-50%, -50%);
}

/* 상단 검색란 */
.header { z-index: 99; }
.header_utils:has(#logoutForm button) #srch_list { right: 135px; }
#srch_list { position: absolute; top: 55px; right: 40px; width: 340px; max-height: 200px; background: rgba(255, 255, 255, 0.8); border-radius: 5px; z-index: 9999; font-size: var(--krds-pc-font-size-body-xsmall); overflow: auto; padding: 5px; }
#srch_list li { position: relative; line-height: calc( var(--krds-pc-font-size-body-xsmall) * 1.5); padding: 5px; border-radius: 5px; cursor: pointer; margin-bottom: 10px; }
#srch_list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;                 /* li 바깥으로 6px 내려서 */
    border-bottom: 1px dashed #bfbfbf;
}
#srch_list li:last-child { margin-bottom: 0; }
#srch_list li:hover { background: #efefef; }


.vr-holder {display: flex; flex-direction: column; align-items: center;}
.vr-label:hover {background-color: var(--krds-color-light-primary-70);}
.vr-label {background-color: var(--krds-color-light-secondary-70); color: white; padding: 4px 8px; border-radius: 4px; font-size: 14px; font-weight: bold; white-space: nowrap; box-shadow: 0 2px 4px rgba(0,0,0,0.3); margin-bottom: 0px; cursor: pointer; }
.vr-holder:has(.vr-label:hover):after {border-top: 8px solid var(--krds-color-light-primary-70);}
.vr-holder:has(.vr-label):after { content:""; width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--krds-color-light-secondary-70); }


.poi-holder {display: flex; flex-direction: column; align-items: center;}
.poi-label:hover {background-color: var(--krds-color-light-primary-70);}
.poi-label {background-color: var(--krds-color-light-secondary-70); color: white; padding: 4px 8px; border-radius: 4px; font-size: 14px; font-weight: bold; white-space: nowrap; box-shadow: 0 2px 4px rgba(0,0,0,0.3); margin-bottom: 0px; cursor: pointer; }
.poi-holder:has(.poi-label:hover):after {border-top: 8px solid var(--krds-color-light-primary-70);}
.poi-holder:has(.poi-label):after { content:""; width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--krds-color-light-secondary-70); }

.map_tools_btn.ico-shadow {
    background: url(/static/pss/images/PSS/ico-shadow.svg) no-repeat center;
}
/* PSS 화질 팝업 세로 정렬 */
#toolbox-graphic .krds-check-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 6px;
}
#toolbox-graphic .krds-form-check {
  width: 100%;
}

/* ico-hq: sgp 아이콘 사용 */
.map_tools_btn.ico-hq {
  background: url(/static/sgp_ipd/images/common/ico/ico-hq.svg) no-repeat center;
  background-size: 20px 20px;
}

/* ico-layer_option: sgp 아이콘 사용 */
.map_tools_btn.ico-layer_option {
  background: url(/static/sgp_ipd/images/common/ico/ico-layer_option.svg) no-repeat center;
  background-size: 20px 20px; /* SGP 아이콘 크기 동일 */
}

#toolbox-layer-info .modal-title,
#toolbox-layer-info .modal-conts,
#toolbox-layer-info #idt-layer-info-tooltip,
#toolbox-layer-info .layer-info-table th,
#toolbox-layer-info .layer-info-table td {
  color: var(--krds-light-color-text-basic-inverse);
}

#toolbox-layer-info .layer-info-table th {
  color: var(--krds-light-color-text-subtle-inverse);
}

/* 건물 속성 모달 사이즈(필요 시) */
#toolbox-layer-info .modal-small {
  width: 380px;
}

/* 속성 테이블 */
#toolbox-layer-info .layer-info-table th,
#toolbox-layer-info .layer-info-table td {
  vertical-align: top;
}

.map_controls .map_tools_btn.ico-compass {
    position: relative;
    background: none; /* 기존 배경 아이콘 제거 */
}

.map_controls .map_tools_btn.ico-compass::before {
    display: none;
}

#toolbox-camera-compass {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

#toolbox-camera-compass svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* 기타 */
#pss_dim {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ml-auto {
    margin-left: auto;
}
.link.row {
    cursor: auto;
}

/* 크롬/엣지/사파리 - 캘린더 아이콘 타겟팅 */
input[type=datetime-local]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    /* 기본적으로 회색 → 원하는 색 느낌으로 보정 */
    filter: invert(40%) sepia(80%) saturate(2000%) hue-rotate(200deg);
}

/* hover 시 살짝 밝게 */
input[type=datetime-local]::-webkit-calendar-picker-indicator:hover {
    filter: invert(60%) sepia(90%) saturate(2000%) hue-rotate(200deg);
}

table:has(.empty + tr) tr.empty { display: none; }

.color-swatch-list { display: ruby; }
.color-swatch-list label { border-radius: var(--krds-radius-small1); }
.modal-overlay .color-picker-group { margin: 0 5px 5px 0; }

#container {
    --bg-primary: #2a2a2e;
    --bg-secondary: #3c3c40;
    --border-color: #555;
    --text-primary: #f0f0f0;
    --text-secondary: #aaa;
    --color-blue: #007bff;
    --color-red: #dc3545;
}

.map_btn_panel.content-area {
    overflow-y: auto;
    scrollbar-gutter: stable; /* 스크롤바 자리 미리 확보 */
    padding-right: 7px;
    width: calc(100% + 7px);
}

.svg-icon.ico-my {
    -webkit-mask: none;
    mask: none;
    -webkit-mask-image: none;
    mask-image: none;
    background-image: url(/static/res/images/common/icon/ico-my.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent !important;
    display: inline-block;
    width: 24px;
    height: 24px;
}
.user-box .active + .user-layer { display: inline-grid; }
.user-layer {
    display: none;
    position: absolute;
    right: 0.5rem;
    top: 4.5rem;
    z-index: 9;

    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
}

.svg-icon.tool_icon_view_mode {
    -webkit-mask: none;
    mask: none;
    -webkit-mask-image: none;
    mask-image: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(/static/pss/images/3dview.svg);
    width: 2rem;
    height: 2rem;
    /* 부드러운 전환 효과를 위해 transition 추가 (선택 사항) */
    transition: background-image 0.2s ease-in-out;
}
.svg-icon.tool_icon_view_mode.topview {
    background-image: url(/static/pss/images/topview.svg);
}

.svg-icon.tool_icon_build_hide {
    -webkit-mask: none;
    mask: none;
    -webkit-mask-image: none;
    mask-image: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(/static/pss/images/build_hide.svg);
    width: 2rem;
    height: 2rem;
}

.tab-content, .tab-content table {
    color: var(--krds-light-color-surface-white);
}

.fl-label {
    float: left;
    width: 8rem;
    line-height: 3.2rem;
    text-align: right;
    display: inline-block; /* 또는 */
    padding-top: 0 !important;
    padding-right: var(--krds-padding-5);
}
.fl-label + input {
    float: right;
    width: calc(100% - 8rem) !important;
}

.form-group label, .form-group button {
    font-size: 1.4rem;
    color: var(--krds-light-color-surface-white);
    font-weight: bold;
}


.fr { float: right; display: flex; }

.krds-modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* 처음에만 가운데 */
}
.is-hidden {
    display: none;
}

#resultModal {
    transform: none;
    width: 57rem;
}
#resultModal .minimize-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    z-index: 10;
}
#resultModal .modal-title { padding-right:30px; }
.svg-icon.ico-minus {
    -webkit-mask: none;
    mask: none;
    -webkit-mask-image: none;
    mask-image: none;
    background-image: url(/static/ags/images/common/icon/ico_minus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent !important;
}
#resultModal .svg-icon { filter: brightness(0) invert(1); }
#resultTable {
    max-width: 57rem;
}

.color-swatch-in-table { display: inline-block; width: 4rem; height: 1rem;; border-radius: 4px; text-align: center; font-size: 0.8rem; color: white; border: 1px solid var(--border-color); }

#legendContainer {
    position: absolute;

    top: calc(100vh - 120px);
    left: 420px;

    width: 470px;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 1000;
    font-size: 11px;
}

.legendBar {
    height: 20px;
    /* background: linear-gradient(to right,
blue, green, yellow, orange, red); */
    margin-bottom: 4px;
    border-radius: 3px;
}

.legendLabels {
    display: flex;
    justify-content: space-between;
}

#helper {
    background-color: var(--krds-light-color-alpha-base50);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6rem;
    padding: 10px;
    font-weight: 500;
    color: var(--krds-color-light-primary-fill);
    border-radius: 5px;
    backdrop-filter: blur(3px);
    z-index: 9;
}

.tocInner.active .toc-panel {
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.6);
}

.structured-item, .box-area {
    background: rgba(0, 0, 0, 0.5) !important;
}

.back-white {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.15) !important;
}


.modal-pss {
    width: 55rem;
}
.modal-pss .conts-area {
    margin-top: var(--krds-padding-5);
}
.modal-pss .conts-area .conts_scroll {
    height: auto;
    max-height: 505rem;
    overflow: auto;
}

.fw400 { font-weight: 400 !important; }
.fw500 { font-weight: 500 !important; }

.pad2 {padding: var(--krds-padding-2);}

button.danger {
    background: #dc3545;
}

button.danger:hover {
    background: #c82333;
}

input[type="range"].slider-group { width: 100%; }
.form-group { min-height: 3.2rem; }


/* ▼▼▼▼▼ VR 모드 키보드 가이드 스타일 ▼▼▼▼▼ */
.vr-controls-guide {
    flex: 1;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.vr-controls-guide .keyboard-row {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.vr-controls-guide .key-cap {
    background-color: #333;
    border: 1px solid #777;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-primary);
}
.vr-controls-guide .key-cap.key-wide {
    width: 55px; /* Shift, Space, Ctrl */
}
.vr-controls-guide p {
    font-size: 11px !important;
    text-align: center;
    margin-top: 5px;
    color: var(--text-secondary) !important;
    line-height: 1.4;
}



/* 지도 우측하단 카메라 정보 */
.f-scene {
    background-color: var(--krds-light-color-alpha-base50);
    position: absolute;
    right: 0;
    bottom: 3.2rem;
    z-index: 3;
    width: auto;
    padding: 0 var(--krds-padding-3);
}
.f-scene .f-inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: var(--krds-gap-2);
}
.f-scene .f-inner ul li {
    font-size: 1.2rem;
    color: var(--krds-light-color-text-basic);
}
.f-scene .f-inner ul li .f_line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 5rem;
    height: 0.5rem;
    border: 2px solid var(--krds-high-contrast-color-surface-white);
    border-top: none;
}

@keyframes error-flash {
    0% {
        /* 그림자 없음, 붉은색, 불투명도 0.7 */
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        /* 그림자가 10px만큼 퍼지면서, 완전히 투명해짐(rgba(..., 0)) */
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        /* 마무리 */
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.highlight-error-btn {
    animation: error-flash 1.5s infinite ease-out; /* 속도 및 느낌 조정 */
    z-index: 9999;
    position: relative;
    border-radius: 4px; /* 버튼이 둥글다면 그림자도 둥글게 처리 (필요시 값 조정) */
}

/* 바람길 색상 설정 */
/* === 1. 단일 색상 (Single Color) UI === */
.custom-color-input-container {
    display: flex;
    align-items: center;
    background-color: #2b2e33; /* 어두운 배경 */
    border: 1px solid #4a4e55;
    border-radius: 4px;
    padding: 4px 8px;
    height: 36px;
    box-sizing: border-box;
}

/* 색상 미리보기 박스 래퍼 */
.color-preview-wrapper {
    position: relative;
    width: 40px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0; /* 크기 고정 */
}

/* 실제 input[type=color] - 투명하게 덮음 */
.color-preview-wrapper input[type="color"] {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    padding: 0; border: 0;
    z-index: 10;
}

/* 보여지는 색상 박스 */
.color-preview-box {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.3);
    box-sizing: border-box;
}

/* HEX 텍스트 영역 */
.hex-text-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    border-left: 1px solid #4a4e55; /* 구분선 */
    padding-left: 10px;
}

.hex-hash {
    color: #888;
    font-size: 13px;
    margin-right: 2px;
}

.hex-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: monospace;
    font-size: 14px;
    width: 100%;
    outline: none;
    text-transform: uppercase;
}

/* === 2. 색상 범위 (Gradient) UI === */
/* [신규] 템플릿 선택 Select 박스 */
.gradient-template-select {
    background-color: #2b2e33;
    color: #fff;
    border: 1px solid #4a4e55;
    border-radius: 4px;
    padding: 4px 12px;
    height: 32px; /* 높이 약간 증가 */
    font-size: 13px;
    outline: none;
    cursor: pointer;
    /* box-sizing은 기본적으로 되어 있다고 가정하지만 명시 */
    box-sizing: border-box;
}

/* 가로 꽉 차게 설정 */
.gradient-template-select.full-width {
    width: 100%;
}

.gradient-template-select:focus {
    border-color: #00d8ff;
}

/* (기존 유지) 그라데이션 컨테이너 */
.gradient-control-row {
    display: flex;
    align-items: center;
    gap: 6px; /* 간격 미세 조정 */
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    flex-wrap: wrap; /* 반응형 줄바꿈 허용 */
}

/* Min/Max 라벨 텍스트 */
.gradient-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0; /* 줄바꿈 방지 */
}
.gradient-label.min { color: #5aaeff; } /* 파란 계열 힌트 */
.gradient-label.max { color: #ff5a5a; } /* 붉은 계열 힌트 */

/* 스와치 리스트 컨테이너 */
.swatch-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-grow: 1; /* 남은 공간 차지 */
    align-items: center;
    justify-content: center;
}

/* 개별 원형 스와치 */
.circle-swatch {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #3a3e44;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0; /* 찌그러짐 방지 */
}
.circle-swatch:hover {
    transform: scale(1.15);
    border-color: #fff;
    z-index: 5;
}
.circle-swatch input[type="color"] {
    position: absolute;
    top: -10px; left: -10px;
    width: 50px; height: 50px; /* 충분히 크게 */
    padding: 0; margin: 0;
    opacity: 0;
    cursor: pointer;
}
.circle-swatch-bg {
    width: 100%; height: 100%;
    border-radius: 50%;
}

/* 추가(+) 버튼 스타일 개선 */
.btn-circle-add {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05); /* 아주 연한 배경 추가 */
    border: 1px dashed #6d7882;
    color: #8e9fae; /* 아이콘 색상 (부드러운 회색) */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    flex-shrink: 0; /* 찌그러짐 방지 필수 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 호버 시 효과: 색상 변경 + 약간의 글로우 + 회전 */
.btn-circle-add:hover {
    border-color: #5aaeff; /* 밝은 파랑 */
    color: #5aaeff;
    background-color: rgba(90, 174, 255, 0.15);
    box-shadow: 0 0 8px rgba(90, 174, 255, 0.4);
    transform: rotate(90deg); /* 회전 애니메이션 */
}

/* 내부 아이콘 (i 태그) 스타일 재정의 */
.btn-circle-add i.svg-icon {
    display: inline-block;
    font-style: normal;
    font-weight: 300; /* 폰트 굵기를 얇게 하여 세련되게 */
    font-size: 22px;  /* 크기 키움 */
    line-height: 32px;   /* 줄간격 초기화 */
    margin-top: -2px; /* 폰트 특유의 하단 여백 보정 (시각적 중앙 정렬) */

    /* 폰트 렌더링 품질 향상 */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 조망점 마커 컨테이너 */
.pss-vp-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    pointer-events: auto;
    /* 아이콘 중심(36px의 절반)을 기둥 끝 좌표에 맞춤 */
    transform: translateX(-50%);
    /*filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));*/
}

/* 조망점 명칭 라벨 */
.pss-vp-marker .vp-label {
    background: #2c3e50;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

/* 카메라 아이콘 영역 */
.pss-vp-marker .vp-icon-box {
    width: 36px;
    height: 36px;
    background: #007bff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

/* 카메라 렌즈 모양 (CSS로 구현) */
.pss-vp-marker .vp-icon-box::before {
    content: '';
    width: 18px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
}
.pss-vp-marker .vp-icon-box::after {
    content: '';
    position: absolute;
    top: 8px;
    width: 6px;
    height: 4px;
    background: #fff;
    border-radius: 1px;
    transform: translateY(-2px);
}

/* 호버 및 선택 시 효과 */
.pss-vp-marker:hover .vp-icon-box,
.pss-vp-marker.is-selected .vp-icon-box {
    background: #e74c3c;
    transform: scale(1.1);
}
.pss-vp-marker:hover .vp-label,
.pss-vp-marker.is-selected .vp-label {
    background: #e74c3c;
    transform: translateY(-2px);
}

/* MapPrime 기본 회전/광택 애니메이션 제거 */
.mapprime-spot-board::before,
.mapprime-spot-board::after,
.mapprime-spot-board h5:before {
    animation: none !important;
}

.svg-icon.ico_tile1 {
    background: url("/static/pss/images/PSS/ico_tile01.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_tile2 {
    background: url("/static/pss/images/PSS/ico_tile02.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd11 {
    background: url("/static/pss/images/PSS/ico_bndry_1-1.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd12 {
    background: url("/static/pss/images/PSS/ico_bndry_1-2.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd13 {
    background: url("/static/pss/images/PSS/ico_bndry_1-3.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd14 {
    background: url("/static/pss/images/PSS/ico_bndry_1-4.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd15 {
    background: url("/static/pss/images/PSS/ico_bndry_1-5.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd21 {
    background: url("/static/pss/images/PSS/ico_bndry_2-1.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd22 {
    background: url("/static/pss/images/PSS/ico_bndry_2-2.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}
.svg-icon.ico_bnd23 {
    background: url("/static/pss/images/PSS/ico_bndry_2-3.svg") no-repeat center;
    width: 1.8rem;
    height: 1.8rem;
}