* { box-sizing: border-box; }

body {
  margin: 0;
  background: #10141a;
  color: #e7ebf1;
  font-family: -apple-system, 'Inter', 'Segoe UI', sans-serif;
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #171d26;
  border-bottom: 1px solid #2a323f;
}

header h1 { font-size: 16px; font-weight: 700; margin: 0; }
header a { color: #8b96a5; text-decoration: none; font-size: 13px; }
header a:hover { color: #4fd1c5; }

main { padding: 24px; max-width: 1300px; margin: 0 auto; }

input[type="text"], input[type="search"] {
  background: #171d26; border: 1px solid #2a323f; color: #e7ebf1;
  border-radius: 8px; padding: 8px 12px; font-size: 13px;
}
input[type="text"]:focus, input[type="search"]:focus { outline: none; border-color: #4fd1c5; }

.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.count { font-size: 13px; color: #8b96a5; font-family: monospace; }

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
  text-align: left; padding: 10px; background: #1e2530; color: #8b96a5;
  font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid #2a323f; white-space: nowrap; position: sticky; top: 0;
}
td { padding: 8px 10px; border-bottom: 1px solid #2a323f; vertical-align: middle; }
tr:hover td { background: #171d26; }

.table-wrap { border: 1px solid #2a323f; border-radius: 10px; overflow: auto; max-height: 78vh; }

.badge {
  display: inline-block; padding: 1px 7px; border-radius: 5px; font-size: 11px; font-weight: 700;
  background: rgba(79,209,197,0.15); color: #4fd1c5; margin-left: 6px;
}
.dim { color: #8b96a5; }

input.name-edit {
  width: 100%; min-width: 220px; background: #171d26; border: 1px solid #2a323f; color: #e7ebf1;
  border-radius: 6px; padding: 6px 8px; font-size: 13px;
}
input.name-edit:focus { outline: none; border-color: #4fd1c5; }
input.name-edit.dirty { border-color: #f5a623; }
input.name-edit.saved { border-color: #6fd67a; }

.save-hint { font-size: 11px; color: #8b96a5; margin-left: 6px; }
.chip { display: inline-block; padding: 2px 8px; border-radius: 999px; background: #1e2530; font-size: 11px; margin: 2px; color: #8b96a5; }
