/******* Do not edit this file *******
Code Snippets Manager
Saved: Sep 05 2025 | 16:13:35 */
:root {
  --bg: #0b0c0f;
  --panel: #111318;
  --ink: #e6e8eb;
  --muted: #9aa3ad;
  --accent: #6aa3ff;
  --border: #1b1f2a;
  --ring: #2a5fff55;
  --radius: 14px;
}
.wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
h1 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  letter-spacing: 0.3px;
}
.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.input, .select {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  outline: none;
  min-width: 200px;
  box-shadow: 0 0 0 0px var(--ring);
}
.input:focus, .select:focus {
  box-shadow: 0 0 0 6px var(--ring);
  border-color: #2a5fff;
}
.card {
  background: linear-gradient(180deg, #0d0f15 0%, #0b0c10 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0f1117;
  color: #c7d0db;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 12px;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}
tbody td {
  padding: 12px;
  border-bottom: 1px solid #171b25;
  vertical-align: top;
}
tbody tr:hover {
  background: #0f1320;
}
.chip {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  color: #cfe2ff;
  background: #17335f;
  border: 1px solid #1f3d70;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.btn {
  background: #101520;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
