body {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef4ff 100%);
}

.page {
    max-width: 1240px;
    padding: 32px 20px 48px;
}

.hero { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; }
.hero h1 { margin: 0; font-size: 2rem; color: #163b73; }
.hero p { margin: 8px 0 0; color: #5f6c7b; }
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; border: 1px solid #c8d7ef; background: #fff; color: #2a4f88; text-decoration: none; font-weight: 600; }
.chip.active { background: #2f6edb; border-color: #2f6edb; color: #fff; }
.toolbar-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; }
.toolbar-row span { color: #5f6c7b; font-weight: 600; }
.actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.refresh-btn { border: 0; border-radius: 999px; padding: 10px 16px; background: #173f78; color: #fff; font-weight: 700; cursor: pointer; }
.refresh-btn:hover { background: #102f59; }
.notice { margin-bottom: 18px; padding: 12px 16px; border-radius: 12px; background: #eef6ff; color: #234a7d; }
.notice.error { background: #fff0f0; color: #983333; }
.summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 24px; }
.search-form { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.search-form input { flex: 1 1 260px; min-width: 220px; padding: 12px 14px; border-radius: 12px; border: 1px solid #c8d7ef; background: #fff; }
.search-form button, .sort-link { border: 0; border-radius: 12px; padding: 12px 14px; background: #2f6edb; color: #fff; text-decoration: none; font-weight: 700; cursor: pointer; }
.sort-link.alt { background: #eff4ff; color: #264d84; border: 1px solid #c8d7ef; }
.pagination { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.pagination a, .pagination span { padding: 10px 14px; border-radius: 10px; background: #fff; border: 1px solid #d7e3f5; color: #264d84; text-decoration: none; }
.pagination .active { background: #2f6edb; color: #fff; border-color: #2f6edb; }
.card { background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 10px 26px rgba(37, 86, 163, 0.08); }
.card h2 { margin: 0 0 6px; font-size: 1rem; color: #5f6c7b; }
.card strong { font-size: 1.6rem; color: #163b73; }
.sector { margin-bottom: 26px; }
.sector-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sector-header h3 { margin: 0; color: #173f78; font-size: 1.15rem; }
.sector-header span { color: #6c7b8d; font-size: 0.92rem; }
.table-wrap { overflow-x: auto; background: #fff; border-radius: 18px; box-shadow: 0 10px 26px rgba(37, 86, 163, 0.08); }
table { width: 100%; border-collapse: collapse; min-width: 860px; }
th, td { padding: 12px 14px; border-bottom: 1px solid #edf2f9; text-align: left; }
th { background: #f7faff; color: #476284; font-size: 0.92rem; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
tr:hover { background: #f9fbff; }
.empty { background: #fff; padding: 28px; border-radius: 16px; color: #6c7b8d; box-shadow: 0 10px 26px rgba(37, 86, 163, 0.08); }

@media (max-width: 760px) {
    .hero { flex-direction: column; align-items: start; }
    .actions { margin-left: 0; width: 100%; justify-content: stretch; flex-direction: column; align-items: stretch; }
}
