/**
 * VWorld 지도 스타일
 */
.map-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

#map {
    width: 100%;
    height: 100%;
}

.coordinates-display {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 지도 컨트롤 패널 스타일 */
.map-control-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 10;
}

.control-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px 0 0 8px;
    height: auto;
    padding: 16px 8px;
    margin-top: 80px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.control-divider {
    width: 24px;
    height: 1px;
    background-color: #d1d5db;
    margin: 8px 0;
}

.control-button {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.control-button:hover {
    background-color: #f3f4f6;
}

.control-button svg {
    width: 20px;
    height: 20px;
}

/* 플레이스홀더 스타일 */
.map-placeholder {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
}

.placeholder-content {
    text-align: center;
    padding: 16px;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: #9ca3af;
}

.placeholder-title {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

.placeholder-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.placeholder-note {
    margin-top: 16px;
    font-size: 12px;
    color: #6b7280;
} 