@media (max-width: 768px) {
    #map-center-dot {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 18px;
        background: none !important;
        z-index: 3000;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        cursor: pointer;
        touch-action: manipulation;
        border: none !important;
        box-shadow: none !important;
    }
    .map-center-plus {
        font-size: 16px;
        color: #111;
        font-weight: bold;
        line-height: 1;
        user-select: none;
        pointer-events: none;
        font-family: Arial, sans-serif;
    }
}

.map-chat-bubble {
    position: fixed;
    min-width: 110px;
    max-width: 180px;
    background: #fff;
    color: #232f3e;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    padding: 8px 18px;
    font-size: 1.04rem;
    font-weight: 600;
    z-index: 2100;
    pointer-events: none;
    text-align: center;
    border: 1.5px solid #009688;
    transition: opacity 0.18s;
}
/* Estilos para el sidebar del mapa interactivo */
#sidebar-content .sidebar-autocomplete-list {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 90px;
    background: #fff;
    border: 1.5px solid #009688;
    border-top: none;
    border-radius: 0 0 10px 10px;
    z-index: 1400;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0,150,136,0.10);
    max-height: 100px;
    overflow-y: auto;
}
#sidebar-content .sidebar-autocomplete-list li {
    padding: 9px 16px;
    cursor: pointer;
    font-size: 1.04rem;
    color: #232f3e;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
}
#sidebar-content .sidebar-autocomplete-list li:last-child {
    border-bottom: none;
}
#sidebar-content .sidebar-autocomplete-list li:hover {
    background: #e0f7fa;
    color: #009688;
}
#sidebar-content .sidebar-point-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px 7px 0;
    border-radius: 7px;
    background: #f7f7fa;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.15s, background 0.15s;
}
#sidebar-content .sidebar-point-list li:hover {
    background: #e0f7fa;
    box-shadow: 0 4px 16px rgba(0,150,136,0.10);
}
#sidebar-content .sidebar-point-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #009688;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,150,136,0.08);
}
#sidebar-content .sidebar-point-name {
    flex: 1 1 auto;
    font-weight: 600;
    font-size: 1.04rem;
    color: #232f3e;
    margin-left: 2px;
}
#sidebar-content .sidebar-point-locate {
    color: #fff;
    background: #009688;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 8px 6px 8px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    box-shadow: 0 2px 8px rgba(0,150,136,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
#sidebar-content .sidebar-point-locate:hover {
    background: #00796b;
    color: #fff;
}
