/* Parish Map Frontend Styles */

.parish-map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.parish-map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 4px;
    font-size: 16px;
    color: #646970;
    z-index: 1000;
}

.parish-map-notice {
    padding: 20px;
    background: #f0f6fc;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
}

.parish-map-notice p {
    margin: 0;
    color: #646970;
}

/* Popup styles */
.parish-popup h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.parish-popup h3 a {
    color: #2271b1;
    text-decoration: none;
}

.parish-popup h3 a:hover {
    text-decoration: underline;
}

.parish-popup p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.parish-popup strong {
    font-weight: 600;
}

/* Leaflet popup adjustments */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 15px;
    min-width: 200px;
    max-width: 300px;
}
