@charset 'utf-8';


#overlay {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

/* 만약 fa-spin이 안 먹는다면 강제로 애니메이션 부여 */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}

/*
.invalid-feedback, .fv-help-block {
    text-align: left !important;
    display: block;
    width: 100%;
    font-size:80%;
}
*/

.file-item:hover { background-color: #f1f4f5 !important; transform: translateY(-1px); }

#map {
    position: relative;
    height: calc(100vh - 110px);
    width: 100%;
}

/* 팝업 전용 테이블 스타일 */
.popup-table {
    width: 260px;
    padding: 3px;
    font-size: 0.875rem;
    /* 적절한 폰트 사이즈 */
}

.popup-table td {
    border: 0 !important;
    /* 가로선 완벽 제거 */
    padding: 2px 0 !important;
    vertical-align: top;
}

.popup-label {
    width: 35%;
    color: #666;
    font-weight: 600;
    white-space: nowrap;
    /* 라벨 줄바꿈 방지 */
}

.popup-value {
    color: #333;
    word-break: break-all;
}

.tree-badge {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid #666;
    vertical-align: middle;
}

.form-input-icon-left {
    position: absolute !important;
    left: -10px;
    top: 10px;
}

.form-input-icon-right {
    position: absolute !important;
    right: 7px;
    top: 10px;
}

.input[readonly] {
    background-color: #f5f5f5;
    color: #777;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

.tree-hr {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

.user-station-popup input {
    width: 100%;
    box-sizing: border-box;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.user-station-popup input[readonly] {
    background-color: #f5f5f5;
    color: #777;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

.user-station-popup .popup-label {
    vertical-align: middle;
    white-space: nowrap;
    padding-right: 12px;
    font-weight: bold;
    color: #555;
}

.user-station-popup .btn-area {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 5px;
}


/* 트리의 마커 이미지 스타일 */
.tree-marker-icon {
    width: 12px;
    /* 마커 너비 */
    height: auto;
    /* 비율 유지 */
    vertical-align: middle;
    /* 텍스트와 중앙 정렬 */
    margin-left: 5px;
    /* 텍스트와의 간격 */
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
    /* 약간의 입체감 */
}

/* 레이블 줄 바꿈 방지 및 정렬 */
.tree-label-wrapper {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.gap-2>.form-group:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
}



/* 비활성화된 라디오 그룹을 시각적으로 흐리게 표현 */
.disabled-group {
    opacity: 0.4;
    pointer-events: none;
    /* 클릭 방지 */
    filter: grayscale(100%);
}

.tui-grid-lside-area {
top:1px !important;
}


.tui-grid-header-area th {
    background-color: #f5f5f5 !important;
}
