/* Estilos específicos para marcadores de tu-negocio */

/* Marcadores con etiquetas de precio */
.tu-negocio-markers .labels {
    color: #fff;
    background-color: transparent;
    border: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    width: 60px;
    white-space: nowrap;
}

.tu-negocio-markers .labels .inner {
    background-color: #007bff;
    border-radius: 4px;
    padding: 4px 8px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.tu-negocio-markers .labels .arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #007bff;
}

/* Diferentes colores según el tipo de negocio */
.tu-negocio-markers .labels .inner.oficina {
    background-color: #28a745;
}

.tu-negocio-markers .labels .arrow.oficina {
    border-top-color: #28a745;
}

.tu-negocio-markers .labels .inner.local {
    background-color: #ffc107;
    color: #212529;
}

.tu-negocio-markers .labels .arrow.local {
    border-top-color: #ffc107;
}

.tu-negocio-markers .labels .inner.nave {
    background-color: #dc3545;
}

.tu-negocio-markers .labels .arrow.nave {
    border-top-color: #dc3545;
}

/* Overlay de carga para info-window */
.tu-negocio-info-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

.tu-negocio-info-loading img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .tu-negocio-info-window {
        max-width: 280px;
    }
    
    .tu-negocio-info-window .listing-box-image {
        height: 120px;
    }
    
    .tu-negocio-info-window .listing-box-title {
        padding: 12px;
    }
    
    .tu-negocio-info-window .listing-box-title h2 {
        font-size: 14px;
    }
    
    .tu-negocio-info-window .listing-box-title h3 {
        font-size: 16px;
    }
    
    .tu-negocio-info-window .listing-box-content {
        padding: 0 12px 12px 12px;
    }
} 