body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
#zoom-display {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1000;
    font-family: monospace;
    font-weight: bold;
}

.legend {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    font-size: 14px;
}

.legend h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
}

/* Mobile-specific styles for tombstone markers and popups */
@media (max-width: 768px) {
    /* Make popups larger and more readable on mobile */
    .leaflet-popup-content-wrapper {
        font-size: 16px !important;
        min-width: 250px !important;
        padding: 15px !important;
    }

    .leaflet-popup-content {
        margin: 15px !important;
        line-height: 1.6 !important;
    }

    .leaflet-popup-content strong {
        font-size: 18px !important;
        display: block;
        margin-bottom: 10px;
    }

    /* Make the popup tip (arrow) larger */
    .leaflet-popup-tip {
        width: 20px !important;
        height: 20px !important;
    }

    /* Increase close button size for easier tapping */
    .leaflet-popup-close-button {
        font-size: 24px !important;
        padding: 8px !important;
        width: 30px !important;
        height: 30px !important;
    }
}