/* Voting UI Styles */
.poi-vote-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.vote-buttons {
    display: flex;
    gap: 10px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 2px solid #e8eaed;
    border-radius: 24px;
    background: white;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 14px;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vote-btn:active {
    transform: translateY(0);
}

.vote-btn.upvote {
    color: #5f6368;
}

.vote-btn.upvote:hover,
.vote-btn.upvote.active {
    border-color: #34a853;
    color: #34a853;
    background: linear-gradient(135deg, #e6f4ea 0%, #fff 100%);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.2);
}

.vote-btn.downvote {
    color: #5f6368;
}

.vote-btn.downvote:hover,
.vote-btn.downvote.active {
    border-color: #ea4335;
    color: #ea4335;
    background: linear-gradient(135deg, #fce8e6 0%, #fff 100%);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.2);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #e6f4ea 0%, #c8e6c9 100%);
    color: #137333;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(19, 115, 51, 0.1);
}

.verified-badge svg {
    fill: #137333;
}

/* Tag Styles */
.poi-tag {
    display: inline-block;
    padding: 5px 12px;
    margin: 3px 4px 3px 0;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    color: #1967d2;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: default;
}

.poi-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(25, 103, 210, 0.2);
}

/* Micro-Landmark Marker Styles */
.micro-landmark-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    animation: markerAppear 0.3s ease-out;
}

@keyframes markerAppear {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.micro-landmark-marker:hover {
    transform: scale(1.2) translateY(-4px);
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Different marker colors based on vote score */
.micro-landmark-marker.high-votes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.micro-landmark-marker.medium-votes {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.micro-landmark-marker.low-votes {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.micro-landmark-marker.negative-votes {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    opacity: 0.7;
}

/* Verified marker badge */
.micro-landmark-marker.verified::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #34a853 0%, #2e7d32 100%);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}