:root {
  --bg: #f3f6f9;
  --surface: #fff;
  --text: #111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #bd0100;
  --brand-600: #bd0100;
  --brand-100: #fdebeb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.wrap {
  padding: 24px;
}
.topbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
  color: #fff;
  padding: 12px 20px;
  border-bottom: 1px var(--brand-600) solid;
}
.btn {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}
.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-light {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  gap: 10px;
  font-weight: 700;
  color: var(--brand);
}
.searchbar {
  display: flex;
  gap: 8px;
  max-width: 680px;
  margin: 14px auto 22px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
}
.table-wrap {
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #f0d6d6;
}
th {
  color: var(--brand);
  font-weight: 800;
  background: #fff;
}
dialog {
  border: none;
  border-radius: 18px;
  max-width: 980px;
}
.modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.login-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 980px;
  margin: 60px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.input-ico {
  display: flex;
  gap: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 12px;
}
.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

