:root {
    --brand: #151515;
    --accent: #f4b400;
}
body {
    background: #f6f7fb;
    color: #222;
}
.hero {
    background: linear-gradient(135deg, rgba(15,15,15,.94), rgba(50,50,50,.88));
    color: white;
    padding: 72px 0;
}
.search-panel {
    background: white;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.property-card {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 7px 22px rgba(0,0,0,.08);
    height: 100%;
}
.property-card img {
    height: 210px;
    object-fit: cover;
    width: 100%;
}
.placeholder-image {
    height: 210px;
    display: grid;
    place-items: center;
    background: #eceef2;
    color: #777;
}
.price {
    font-size: 1.3rem;
    font-weight: 700;
}
.sidebar-card, .content-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 7px 22px rgba(0,0,0,.06);
}
.table td, .table th {
    vertical-align: middle;
}
.admin-nav a {
    text-decoration: none;
}
