/* Map Hint Tooltip - 모바일 사용자에게 지도 이동 안내 */

.map-hint-tooltip {
    position: fixed;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90%;
}

.map-hint-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-hint-message {
    flex: 1;
}

.map-hint-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.map-hint-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 데스크탑에서는 숨김 (지도와 리스트가 분리되지 않음) */
@media (min-width: 769px) {
    .map-hint-tooltip {
        display: none;
    }
}
