body {
    margin: 0;
    font-family: system-ui, Arial, sans-serif;
    background: #f4f1eb;
    color: #222;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #263238;
    color: white;
    padding: 16px 32px;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #d6b56d;
}

.container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
}

.filters {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    padding: 16px;
    background: white;
    border-radius: 12px;
}

.filters input,
.filters select,
.filters button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.filters button {
    background: #263238;
    color: white;
    cursor: pointer;
}

.panel {
    background: white;
    padding: 24px;
    border-radius: 12px;
}
