body {
    margin: 0;
    padding: 0;
}

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

.marker-popup {
    font-family: Arial, sans-serif;
    text-align: center;
}

.marker-popup h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.marker-popup p {
    margin: 0;
    color: #666;
}

.custom-marker {
    background: none;
    border: none;
}

.marker-value {
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid white;
}

/* 尺寸样式 */
.size-xs .marker-value {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.size-small .marker-value {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.size-medium .marker-value {
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.size-large .marker-value {
    width: 60px;
    height: 60px;
    font-size: 18px;
} 