:root {
    --bg: #f7f7f9;
    --surface: #ffffff;
    --text: #16181d;
    --muted: #6a7382;
    --line: #d9dce2;
    --accent: #0057d9;
    --accent-soft: #e7f0ff;
    --success: #097b4a;
    --danger: #a3322b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.45;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
}

.header-inner {
    padding: 1rem 0;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.intro h1,
.city-header h1 {
    margin-bottom: 0.4rem;
}

.subdued {
    color: var(--muted);
}

.search-panel {
    margin: 1.25rem 0 1.5rem;
    display: grid;
    gap: 0.4rem;
}

.search-panel input,
.request-form input {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    background: var(--surface);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.city-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
}

.city-card h2 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.city-card a {
    color: var(--text);
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.facts {
    margin: 0;
    padding-left: 1.1rem;
}

.flag {
    font-size: 1.2rem;
}

section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.request-form {
    display: grid;
    gap: 0.55rem;
    max-width: 620px;
}

.request-form button {
    width: fit-content;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.78rem;
    margin: 0 0.4rem;
}

.badge.yes {
    background: #ddf5eb;
    color: var(--success);
}

.badge.no {
    background: #fde7e5;
    color: var(--danger);
}

.tip-box {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    padding: 0.75rem;
    border-radius: 8px;
}

.empty-state {
    text-align: center;
}

.hidden {
    display: none !important;
}

.site-footer {
    margin-top: 2rem;
    padding: 1rem 0 2rem;
    color: var(--muted);
}

@media (max-width: 700px) {
    .container {
        width: min(1100px, 95vw);
    }
}
