/* NightStrom404 Pastebin — minimalist premium theme
   Palette: Pure Black #000000, White #FFFFFF, Gray #111111, Light Gray #EAEAEA
   No gradients, no emojis, no unnecessary animation. */

:root {
  --nb-black: #000000;
  --nb-gray: #111111;
  --nb-light-gray: #EAEAEA;
  --nb-white: #FFFFFF;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
}

.card {
  background: var(--nb-gray);
  border: 1px solid #232323;
  border-radius: 0.75rem;
}

.card-glass {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.input {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: var(--nb-light-gray);
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s ease;
}
.input:focus {
  outline: none;
  border-color: #ffffff;
}

.btn-primary {
  background: var(--nb-white);
  color: var(--nb-black);
  border-radius: 0.5rem;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--nb-light-gray); }

.btn-secondary {
  background: transparent;
  border: 1px solid #333333;
  color: var(--nb-light-gray);
  border-radius: 0.5rem;
  padding: 0.6rem 1.1rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { border-color: #ffffff; color: #ffffff; }

.btn-danger {
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #d4d4d4;
  border-radius: 0.5rem;
  padding: 0.5rem 0.9rem;
}
.btn-danger:hover { border-color: #ffffff; color: #ffffff; }

pre code.hljs {
  border-radius: 0.5rem;
  padding: 1.25rem !important;
  font-size: 0.85rem;
  line-height: 1.6;
}

table.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
table.data-table th {
  text-align: left;
  color: #999;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #232323;
}
table.data-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #1a1a1a;
}
table.data-table tr:hover td { background: #0d0d0d; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #333;
  color: #ccc;
}

::selection { background: #ffffff; color: #000000; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }
