/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* Map container fills entire viewport */
#map {
    width: 100vw;
    height: 100vh;
}

/* Last seen badge */
#last-seen-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    z-index: 1000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .leaflet-control-zoom {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .leaflet-control-attribution {
        font-size: 10px;
    }
}
