/* ==========================================
   NEIGHBORHOOD LAYER STYLES
   ========================================== */

/* Leaflet DivIcon Wrapper - Reset */
.neighborhood-label-icon {
    background: none !important;
    border: none !important;
}

/* The Label Bubble */
.neighborhood-label-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #cbd5e1;
    /* Slate 300 */
    color: #1e293b;
    /* Slate 800 */
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    text-align: center;

    /* Center positioning relative to coordinate */
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -webkit-user-select: none;
    user-select: none;
    z-index: 500;
}

/* Hover Effect */
.neighborhood-label-content:hover {
    background: #ffffff;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #94a3b8;
    z-index: 1000;
}

/* Edit Mode Styles */
.neighborhood-label-content.editing {
    background: #ffffff;
    border: 2px dashed #f59e0b;
    /* Amber 500 */
    color: #b45309;
    /* Amber 700 */
    cursor: move;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.neighborhood-label-content.editing:hover {
    background: #fffbeb;
    /* Amber 50 */
    transform: translateX(-50%) scale(1.05);
}

/* Oculto / Hidden State */
.neighborhood-label-content span.hidden-tag {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 4px;
}