/**
 * V2 Map - 팝업 스타일
 */

/* ─── 팝업 오버레이 ─── */
.v2-popup {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    min-width: 200px;
    max-width: 360px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    color: #333;
    font-size: 13px;
    display: none;
}

.v2-popup-closer {
    position: absolute;
    top: 8px;
    right: 10px;
    text-decoration: none;
    color: #888;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.v2-popup-closer::after {
    content: '✕';
}

.v2-popup-closer:hover {
    color: #ff5252;
}

.v2-popup-content {
    line-height: 1.6;
}

.v2-popup-content table {
    width: 100%;
    border-collapse: collapse;
}

.v2-popup-content th,
.v2-popup-content td {
    padding: 4px 8px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.v2-popup-content th {
    color: #9ca3af;
    font-weight: 500;
    width: 80px;
}

.v2-popup-content td {
    color: #333;
}
