/* DBPA Shield v2 — minimal overrides on top of Tailwind CDN. */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Tighter focus rings */
input:focus, textarea:focus, select:focus, button:focus {
  outline: none;
}

/* Drag-drop upload zone */
.drop-zone {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  transition: border-color .15s, background-color .15s;
}
.drop-zone.dragover {
  border-color: #2563eb;
  background: #eff6ff;
}

/* Tables */
table.shield-table {
  width: 100%;
  border-collapse: collapse;
}
table.shield-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
table.shield-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
table.shield-table tr:hover td {
  background: #f8fafc;
}
