* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.muted {
  color: #94a3b8;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input, select, button {
  border-radius: 8px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #e2e8f0;
  padding: 8px 10px;
}

button {
  cursor: pointer;
}

button:hover {
  background: #334155;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.status {
  margin: 12px 0 16px;
}

#resultsTable {
  width: 100%;
  border-collapse: collapse;
}

#resultsTable th,
#resultsTable td {
  border: 1px solid #334155;
  padding: 8px;
  font-size: 13px;
}

#resultsTable a {
  color: #60a5fa;
}
