:root {
  color-scheme: light;
  font-family: Inter, Arial, sans-serif;
  background: #f7f9fb;
  color: #17202a;
}

body {
  margin: 0;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #d7dee8;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a,
.pill {
  color: #17406d;
  text-decoration: none;
  border: 1px solid #c8d4e3;
  border-radius: 8px;
  padding: 7px 10px;
  background: #ffffff;
}

main {
  max-width: 1160px;
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 28px 0 48px;
}

h1 {
  font-size: 34px;
  margin: 0 0 10px;
  letter-spacing: 0;
}

h2 {
  margin-top: 28px;
}

p {
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.status {
  font-weight: 700;
  color: #235b2d;
}

.blocked {
  font-weight: 700;
  color: #8b1e1e;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid #e7edf4;
  text-align: left;
  padding: 11px 12px;
  vertical-align: top;
}

th {
  background: #edf3f9;
}

.notice {
  border-left: 4px solid #17406d;
  background: #eef5fb;
  padding: 12px 14px;
  margin: 16px 0;
}

.language-toggle {
  font-size: 14px;
}
