.mc-probstackv2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filter Buttons */
.mc-property-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mc-filter-btn {
    padding: 12px 24px;
    border: 2px solid #1e3a8d;
    background: #fff;
    color: #1e3a8d;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mc-filter-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.mc-filter-btn.active {
    background: #1e3a8d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 58, 141, 0.3);
}

.mc-probstackv2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.mc-property-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mc-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.mc-property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.mc-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-property-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 14px;
}

/* Status Badges */
.mc-property-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Verkauf - Grün */
.mc-status-sale {
    background: #6e8900;
}

/* Vermietung - Blau */
.mc-status-rent {
    background: #1e3a8d;
}

/* Reserviert - Orange */
.mc-status-reserved {
    background: #ff8c00;
}

/* Verkauft - Rot */
.mc-status-sold {
    background: #df0a0a;
}

/* Vermietet - Grau */
.mc-status-rented {
    background: #6c757d;
}

.mc-property-content {
    padding: 20px;
}

.mc-property-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.mc-property-location {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.mc-property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.mc-detail-item {
    font-size: 14px;
    color: #555;
}

.mc-property-price {
    font-size: 22px;
    font-weight: bold;
    color: #203d8b;
    margin: 15px 0;
}

.mc-price-suffix {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.mc-btn-details {
    width: 100%;
    padding: 12px 20px;
    background: #203d8b;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mc-btn-details:hover {
    background: #1a2f6b;
}

@media (max-width: 768px) {
    .mc-probstackv2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
