/* Simple Popup Design matching the reference image */
.simple-popup-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    /* Clean white card */
    font-family: 'Outfit', sans-serif;
    min-width: 280px;
}

.simple-popup-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.simple-popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.simple-popup-title {
    font-size: 16px;
    font-weight: 700;
    color: #263238;
    margin: 0;
    line-height: 1.2;
}

.simple-popup-address {
    font-size: 12px;
    color: #70757a;
    margin: 0;
    line-height: 1.4;
}

.simple-popup-link {
    font-size: 12px;
    color: #546E7A;
    text-decoration: none;
    font-weight: 500;
    margin-top: 4px;
    display: inline-block;
    transition: color 0.2s;
}

.simple-popup-link:hover {
    color: #1A4D2E;
    text-decoration: underline;
}

/* Override Leaflet/MapLibre Popup Styles for this cleaner look */
.leaflet-popup-content-wrapper,
.maplibregl-popup-content {
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content,
.maplibregl-popup-content {
    margin: 0 !important;
    width: auto !important;
}

.leaflet-popup-tip,
.maplibregl-popup-tip {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Hide the default close button for a cleaner look, or style it minimally */
.leaflet-popup-close-button,
.maplibregl-popup-close-button {
    display: none;
    /* Hide it as per the clean design in the image */
}