* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fb;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #222;
}

/* Filters */
.filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filters select, .filters button {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.filters button {
    background: #007bff;
    color: #fff;
    cursor: pointer;
    border: none;
}

.filters button:hover {
    background: #0056cc;
}

/* Cards */
.listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card h2 {
    margin: 0;
    color: #333;
}

.highlight {
    color: #555;
    margin: 12px 0;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

.links .profile {
    background: #007bff;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

.links .profile:hover {
    background: #0056cc;
}

.location {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

.no-data {
    text-align: center;
    grid-column: 1/-1;
    color: #888;
}
