/**
 * Public styles for Oo Wp Immo Sync v2
 */

.oo-wp-immo-sync-v2 {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #2271b1;
}

.oo-wp-immo-sync-v2 h3 {
    margin-top: 0;
    color: #2271b1;
}

/* Property grid styles */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-details {
    padding: 15px;
}

.property-title {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.property-price {
    font-weight: bold;
    color: #2271b1;
    font-size: 1.1em;
    margin: 10px 0;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9em;
}
