.area-label {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #666;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none !important;
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default !important;
    position: absolute !important;
    margin-top: 5px !important;
}

/* Override Leaflet's default tooltip interaction */
.leaflet-tooltip {
    pointer-events: none !important;
    cursor: default !important;
    position: absolute !important;
    user-drag: none !important;
    -webkit-user-drag: none !important;
}

/* Remove all tooltip arrows */
.leaflet-tooltip:before {
    display: none !important;
}

/* These can be removed since we're hiding all arrows now */
.leaflet-tooltip-top:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    pointer-events: none !important;
}

/* Area popup styles */
.area-popup {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.area-popup:hover {
    text-decoration: none;
    color: inherit;
}

.area-popup-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.area-popup-content {
    flex: 1;
}

.area-popup-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.area-popup-stats {
    font-size: 14px;
    color: #666;
}

.area-popup-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.area-popup-link:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

/* Make popups wider */
.leaflet-popup-content {
    min-width: 250px !important;
    margin: 0 !important;
}

.leaflet-popup-content-wrapper {
    padding: 0 !important;
    overflow: hidden;
}

.area-popup-location {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    margin-top: 2px;
}

/* Hide popup close button */
.leaflet-popup-close-button {
    display: none !important;
} 