/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #071022;
  --panel: #0d1a30;
  --panel-2: #10203a;
  --text: #e8eef9;
  --muted: #99accf;
  --border: #21375f;
  --brand: #06f;
  --brand-strong: #0053d6;
  --ok: #16a34a;
  --warn: #f59e0b;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html, body {
  background: radial-gradient(circle at 20% 0%, #12305f 0%, var(--bg) 52%);
  color: var(--text);
  margin: 0;
  padding: 0;
  font-family: Inter, Segoe UI, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
}

.shell {
  width: min(1280px, 96vw);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.top-nav {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 90%, black 10%);
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  display: flex;
}

.top-nav h1 {
  letter-spacing: .02em;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.section-title {
  margin: 18px 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 16px;
}

.seg-nav {
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.seg-nav a {
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
}

.seg-nav a.active {
  color: #fff;
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 20%, transparent 80%);
}

.card {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 92%, black 8%);
  border-radius: 14px;
}

.filters {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  display: grid;
}

.filters input, .filters select, .filters button {
  border: 1px solid var(--border);
  background: var(--panel-2);
  width: 100%;
  color: var(--text);
  border-radius: 10px;
  padding: 10px 11px;
  font-size: .92rem;
}

.filters button {
  background: var(--brand);
  border-color: var(--brand);
  cursor: pointer;
  font-weight: 600;
}

.filters button:hover {
  background: var(--brand-strong);
}

.table-wrap {
  margin-top: 12px;
  overflow: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 860px;
}

th, td {
  border-top: 1px solid var(--border);
  text-align: left;
  padding: 11px 12px;
  font-size: .92rem;
}

th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

tr.data-row {
  cursor: pointer;
}

tr.data-row:hover {
  background: color-mix(in srgb, var(--brand) 8%, transparent 92%);
}

.badge {
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  padding: 3px 9px;
  font-size: .74rem;
  font-weight: 700;
  display: inline-flex;
}

.badge.trusted {
  background: color-mix(in srgb, var(--ok) 18%, transparent 82%);
  color: #87f4a2;
}

.badge.new {
  background: color-mix(in srgb, var(--warn) 24%, transparent 76%);
  color: #ffd088;
}

.badge.revoked, .badge.failed {
  background: color-mix(in srgb, var(--danger) 20%, transparent 80%);
  color: #ff9b9b;
}

.badge.low, .badge.known_device, .badge.sent {
  color: #a3dffd;
  background: #0ea5e933;
}

.badge.medium, .badge.pending {
  background: color-mix(in srgb, var(--warn) 18%, transparent 82%);
  color: #ffd88a;
}

.badge.high, .badge.critical, .badge.new_device {
  background: color-mix(in srgb, var(--danger) 20%, transparent 80%);
  color: #ff9c9c;
}

.pagination {
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
}

.drawer-backdrop {
  z-index: 90;
  background: #040810a6;
  position: fixed;
  inset: 0;
}

.drawer {
  border-left: 1px solid var(--border);
  z-index: 100;
  background: #081428;
  width: min(560px, 96vw);
  height: 100vh;
  padding: 18px;
  position: fixed;
  top: 0;
  right: 0;
  overflow: auto;
}

.drawer header {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.drawer h3 {
  margin: 0;
}

.drawer .muted {
  color: var(--muted);
  margin-top: 4px;
}

.grid-two {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
  display: grid;
}

.kv {
  border: 1px solid var(--border);
  background: #0c1b34;
  border-radius: 10px;
  padding: 8px;
}

.kv .k {
  color: var(--muted);
  font-size: .74rem;
}

.kv .v {
  word-break: break-word;
  margin-top: 4px;
  font-size: .88rem;
}

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

.actions button {
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  border-radius: 10px;
  padding: 9px 12px;
}

.actions .primary {
  background: var(--brand);
  border-color: var(--brand);
}

.actions .danger {
  background: color-mix(in srgb, var(--danger) 25%, #120707 75%);
  border-color: color-mix(in srgb, var(--danger) 45%, var(--border) 55%);
}

.error {
  color: #ffb0b0;
  background: color-mix(in srgb, var(--danger) 14%, transparent 86%);
  border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent 60%);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 8px 10px;
}

.success {
  color: #9bf7be;
  background: color-mix(in srgb, var(--ok) 14%, transparent 86%);
  border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent 60%);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 8px 10px;
}

@media (max-width: 1024px) {
  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/