body {
    background-color: #f5f7fb;
}

/* Navbar */
.navbar {
    background-color: #F8F6F0;
}

.navbar a {
    color: black !important;
}

/* Property Card */
.property-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
}

/* Image */
.property-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Card Body */
.card-body {
    padding: 1rem;
}

/* Title */
.property-title {
    font-size: 18px;
    line-height: 1.3;
    min-height: 48px;
}

/* Price */
.price {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
}

/* Meta */
.property-meta {
    display: flex;
    gap: 15px;
    font-size: 15px;
    color: #555;
}

/* Button */
.btn-primary {
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
}

/* Equal height columns */
.row.g-4 > [class*='col-'] {
    display: flex;
}

#cropImage {
    width: 100%;
    max-height: 500px;
}

.cropper-container {
    max-width: 100% !important;
}