* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

h1 {
    margin: 20px 0;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
}

#map {
    width: 90%;
    height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ol-popup {
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 8px;
    border: none;
    bottom: 12px;
    left: -50px;
    min-width: 300px;
    display: none;
}

.popup-content {
    text-align: left;
}

.popup-content h3 {
    color: #202124;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-details {
    font-size: 0.875rem;
    color: #3c4043;
}

.popup-details p {
    color: inherit;
    line-height: 1.25;
    margin: 4px 0;
}

.popup-details ul {
    list-style: none;
    margin: 8px 0;
}

.popup-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    color: #5f6368;
}

.popup-details .material-icons {
    font-size: 20px;
    color: #5f6368;
    min-width: 20px;
}

.icon-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.popup-details small {
    color: #7f8c8d;
    font-size: 0.8rem;
    display: block;
    margin-top: 8px;
    text-align: right;
}

.popup-content small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-close-button {
    padding: 8px !important;
}

@media (max-width: 768px) {
    #map {
        width: 95%;
        height: 75vh;
    }

    .popup-content {
        font-size: 0.9rem;
    }
} 