/* Map styles */
#map { 
    height: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Property list styles */
.property-list {
    max-height: 600px;
    overflow-y: auto;
}

.property-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.property-item:hover {
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.property-item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

/* Marker styles */
.normal-marker {
    background-color: #3388ff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
}

.highlight-marker {
    background-color: #ff3333;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(255,51,51,0.7);
}

.pulse-marker {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Like button styles */
.like-btn {
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.like-btn:hover, .like-btn.liked {
    color: #ff4757;
}