/* Estilos para el mapa de propiedad */
.property-map-container {
    width: 100%;
    margin-bottom: 30px;
}

.property-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

/* Estado de carga */
.property-map::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-radius: 50%;
    border-top-color: #3498db;
    animation: spin 1s linear infinite;
}

.property-map.loaded::before {
    display: none;
}

/* Mensaje de error */
.property-map-error {
    padding: 20px;
    background-color: #fff1f0;
    border: 1px solid #ffccc7;
    border-radius: 8px;
    color: #a8071a;
    text-align: center;
    margin-bottom: 30px;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive */
@media (max-width: 767px) {
    .property-map {
        height: 300px;
    }
}
