* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 24px;
  background: #0b0f1a;
  color: #e8ecf3;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 6px 0;
  font-size: 24px;
}

h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.muted {
  color: #8e9bb3;
}

.btn {
  background: #3b82f6;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.btn:hover {
  background: #2563eb;
}

.card {
  background: #141a2b;
  border: 1px solid #1f2a44;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.search {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #2c3a5e;
  background: #0f1527;
  color: #e8ecf3;
}

.result {
  margin-top: 12px;
  color: #c5d2ea;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th,
td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid #1f2a44;
  word-break: break-all;
}

.status div {
  margin-bottom: 4px;
}
