* { box-sizing: border-box; }

:root {
  --bg: #f4f7fb;
  --text: #172033;
  --muted: #5a6b8a;
  --line: #dbe2ef;
  --primary: #2463eb;
  --danger: #c53030;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Segoe UI, Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
}

input,
select,
button {
  font: inherit;
}

.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border-color: #2b477e;
  color: #fff;
}

.btn--danger {
  background: transparent;
  border-color: #9b2c2c;
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid #edf1f8;
  text-align: left;
  font-size: 14px;
}

th {
  background: #f2f6ff;
}

