/* Frontend styles for Open Houses Manager */

.ohm-open-houses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ohm-open-house-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ohm-open-house-card:hover {
    transform: translateY(-5px);
}

.ohm-open-house-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 10px;
}

.ohm-open-house-details h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.ohm-open-house-details p {
    margin: 5px 0;
}

.ohm-open-house-actions {
    margin-top: 10px;
}

.ohm-open-house-actions .button {
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

/* Status Styles */
.status-active {
    color: #21759b;
    font-weight: bold;
}

.status-sold {
    color: #dc3232;
    font-weight: bold;
}

.status-pending {
    color: #f0ad4e;
    font-weight: bold;
}
