body {
    background: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    color: #ff7a00 !important;
}

.hero {
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
                url('/assets/img/hero.jpg') center/cover;
    color: #fff;
    padding: 60px 0;
}

.card-ad img {
    height: 160px;
    object-fit: cover;
}

.price {
    color: #ff7a00;
    font-weight: 700;
}

.btn-orange {
    background: #ff7a00;
    color: #fff;
}

.btn-orange:hover {
    background: #e96c00;
    color: #fff;
}

.sidebar {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
}
.chat-box {
    height: 380px;
    overflow-y: auto;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.hover-bg:hover {
    background-color: #f1f1f1;
}

.page-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.page-content p {
    color: #555;
    line-height: 1.7;
}

.page-content ul {
    padding-left: 18px;
}

.page-content ul li {
    margin-bottom: 8px;
}

.legal-page h2 {
    font-weight: 700;
}

.legal-page h5 {
    margin-top: 25px;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-page ul {
    padding-left: 18px;
}
.ad-image {
    width: 100%;
    height: 180px;            /* Adjust as needed */
    overflow: hidden;
    border-radius: 6px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;         /* 🔑 Key line */
}

.pagination .page-link {
    color: #212529;
    border-radius: 6px;
}

.pagination .page-item.active .page-link {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 600;
}

.pagination .page-link:hover {
    background-color: #fff3cd;
}

.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}