/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  background-color: #050510;
  color: #d6e6df;
  height: 100%;
  overflow: hidden;
}

/* Smooth fonts */
body {
  -webkit-font-smoothing: antialiased;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 170, 0.3);
  border-radius: 4px;
}

/* ---------- LAYOUT ---------- */
.app-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  width: 250px;
  background: rgba(0, 0, 0, 0.45);
  border-right: 1px solid rgba(0, 255, 180, 0.2);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* neon vertical bar glow */
.sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 180, 0.8),
    rgba(0, 255, 230, 0.3),
    transparent
  );
  filter: blur(2px);
}

/* Logo area */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.logo-glow {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ffa3, #00eaff);
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.6);
}

.logo-title {
  font-size: 14px;
  font-weight: 700;
  color: #00ffc8;
  letter-spacing: 2px;
}
.logo-subtitle {
  font-size: 11px;
  color: #99fff0;
  opacity: 0.7;
  letter-spacing: 1px;
}

.sidebar-nav {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #b2f5e9;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.2s;
  font-size: 14px;
}

.nav-item:hover {
  background: rgba(0, 255, 180, 0.08);
  border-color: rgba(0, 255, 220, 0.2);
  transform: translateX(4px);
}

.nav-item-active {
  background: rgba(0, 255, 200, 0.12);
  border-color: rgba(0, 255, 200, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 240, 0.4);
}

.nav-dot {
  width: 7px;
  height: 7px;
  background: #00ffcc;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ffe0;
}

/* ---------- SIDEBAR FOOTER ---------- */
.sidebar-footer {
  margin-top: auto;
  padding: 16px;
  font-size: 12px;
  border-top: 1px solid rgba(0, 255, 180, 0.15);
}

.footer-label {
  color: #00ffc2;
  letter-spacing: 1px;
  font-size: 11px;
  margin-bottom: 6px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ffa4;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffcb;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
}

.footer-description {
  color: #99ffe5;
  opacity: 0.6;
  line-height: 1.4;
}

/* ---------- MAIN ---------- */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ---------- TOPBAR ---------- */
.topbar {
  height: 60px;
  border-bottom: 1px solid rgba(0, 255, 180, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  font-size: 14px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 1px;
}

.badge-green {
  background: rgba(0, 255, 200, 0.15);
  border: 1px solid rgba(0, 255, 200, 0.5);
  color: #00ffcc;
}

.topbar-subtitle {
  font-size: 12px;
  opacity: 0.65;
  color: #d6fff6;
}

/* RIGHT SIDE */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 10px;
  width: 32px;
  height: 32px;
  color: #cafff4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
}

.icon-button:hover {
  background: rgba(0, 255, 200, 0.12);
  scale: 1.1;
}

.notification-button {
  position: relative;
}

.notif-dot {
  width: 7px;
  height: 7px;
  background: #00ffcc;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: 5px;
  box-shadow: 0 0 10px #00ffd9;
}

/* USER PILL */
.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 200, 0.3);
  background: rgba(0, 0, 0, 0.25);
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(130deg, #00ffa3, #00eaff);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.7);
}

.user-info {
  line-height: 1.1;
}

.user-name {
  font-size: 13px;
}
.user-role {
  font-size: 10px;
  opacity: 0.8;
  letter-spacing: 1px;
  color: #00ffc2;
}

/* ---------- CONTENT AREA ---------- */
.content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

/* ---------- OVERVIEW PAGE ---------- */
.view {
  display: none;
}

.view-active {
  display: block;
}

.view-title {
  font-size: 26px;
  font-weight: 600;
}
.view-subtitle {
  color: #9affea;
  opacity: 0.7;
  margin-top: 5px;
  font-size: 13px;
}

.highlight {
  color: #00ffe0;
  font-weight: bold;
}

/* Badges */
.view-badges {
  display: flex;
  gap: 8px;
}
.badge-green-outline {
  border: 1px solid #00ffc2;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 8px;
  color: #00ffc2;
}
.badge-cyan-outline {
  border: 1px solid #00eaff;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 8px;
  color: #00eaff;
}

/* Grid */
.grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
/* Three column layout for overview modules */
.grid-3 {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr;
  gap: 18px;
  margin-top: 20px;
}


/* Stat cards */
.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 200, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 220, 0.15);
}

.stat-label {
  font-size: 12px;
  color: #99ffe9;
  opacity: 0.7;
  letter-spacing: 1px;
}
.stat-value {
  font-size: 22px;
  margin-top: 8px;
  color: #eafffb;
}
.stat-sub {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.6;
  color: #9affea;
}

/* Panels */
.panel {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 200, 0.25);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.2);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.panel-title {
  font-size: 16px;
  font-weight: 600;
}
.panel-subtitle {
  font-size: 12px;
  opacity: 0.7;
  color: #aafff4;
}

.pill-small {
  padding: 4px 8px;
  font-size: 10px;
  border: 1px solid #00ffc2;
  color: #00ffc2;
  border-radius: 6px;
}

/* Recent activity list */
.activity-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 180, 0.15);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
}

.activity-item:hover {
  background: rgba(0, 255, 180, 0.08);
  border-color: rgba(0, 255, 200, 0.4);
}

/* Chart placeholder */
.chart-placeholder {
  height: 200px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 200, 0.2);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-placeholder-text {
  color: #9affea;
  opacity: 0.6;
  font-size: 12px;
}

.panel-footnote {
  margin-top: 10px;
  font-size: 11px;
  opacity: 0.65;
  color: #aafff4;
}
/* -----------------------------------------
   TRANSACTIONS PAGE
----------------------------------------- */

.tx-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.tx-search {
  flex: 1;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 10px;
  color: #d6fff6;
  font-size: 14px;
}

.tx-search:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 10px #00ffd9;
}

.tx-sort {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(0, 255, 200, 0.1);
  border: 1px solid rgba(0, 255, 200, 0.4);
  color: #00ffe0;
  cursor: pointer;
  transition: 0.2s;
}

.tx-sort:hover {
  background: rgba(0, 255, 200, 0.18);
  scale: 1.03;
}

.tx-table-wrapper {
  margin-top: 20px;
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.tx-table {
  width: 100%;
  border-collapse: collapse;
}

.tx-table th {
  padding: 14px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
  background: rgba(0, 255, 200, 0.12);
  color: #00ffe0;
  border-bottom: 1px solid rgba(0, 255, 200, 0.3);
}

.tx-table td {
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 255, 200, 0.1);
  color: #d6fff6;
}

.tx-table tr:hover {
  background: rgba(0, 255, 200, 0.08);
}

/* Pagination */
.tx-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.tx-page-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 200, 0.4);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  color: #00ffcc;
  transition: 0.2s;
}

.tx-page-btn:hover {
  background: rgba(0, 255, 200, 0.14);
  scale: 1.05;
}

.tx-page-indicator {
  color: #99ffe5;
  font-size: 13px;
  letter-spacing: 1px;
}
/* -----------------------------------------
   ANALYTICS PAGE — CHART CANVAS
----------------------------------------- */

.chart-canvas {
  width: 100%;
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 255, 200, 0.25);
  border-radius: 12px;
  padding: 10px;
}

/* =====================================================================
   GLOBAL CYBERPUNK ENHANCEMENTS
   Smooth spacing • Tooltips • Glow • Motion • Elite UI polish
===================================================================== */

/* ---------- Better text spacing ---------- */
body, p, span, div {
  letter-spacing: 0.3px;
  word-spacing: 1px;
  line-height: 1.45;
}

/* ---------- Universal hover smoothness ---------- */
* {
  transition: 0.18s ease;
}

/* ---------- Cyberpunk Tooltip System ---------- */
.tooltip {
  position: relative;
}

.tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(0, 255, 200, 0.15);
  border: 1px solid #00ffd9;
  padding: 8px 10px;
  border-radius: 8px;
  color: #d8fff7;
  font-size: 11px;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.35);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: tooltipFade 0.25s ease;
}

@keyframes tooltipFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Soft Glow on Panels, Cards ---------- */
.panel,
.stat-card,
.activity-item,
.tx-table td,
.tx-page-btn {
  position: relative;
}

.panel:hover,
.stat-card:hover,
.activity-item:hover {
  box-shadow: 0 0 22px rgba(0, 255, 200, 0.25);
  transform: translateY(-2px);
}

/* ---------- Neon border pulse ---------- */
@keyframes neonPulseFast {
  0% { border-color: rgba(0, 255, 200, 0.1); }
  50% { border-color: rgba(0, 255, 230, 0.55); }
  100% { border-color: rgba(0, 255, 200, 0.1); }
}

.panel:hover {
  animation: neonPulseFast 1.4s infinite;
}

/* ---------- Active Sidebar Glow ---------- */
.nav-item-active {
  text-shadow: 0 0 6px rgba(0, 255, 230, 0.7);
}

/* ---------- Better table hover ---------- */
.tx-table tr:hover td {
  color: #c2fff2;
  text-shadow: 0 0 6px rgba(0, 255, 220, 0.4);
}

/* ---------- Chart canvas neon frame ---------- */
.chart-canvas:hover {
  border-color: #00ffe0;
  box-shadow: 0 0 18px rgba(0, 255, 220, 0.25);
}

/* ---------- Smooth scroll ---------- */
.content {
  scroll-behavior: smooth;
}
.chart-canvas {
  min-height: 280px !important;
  height: 280px !important;
}
.chart-placeholder {
  min-height: 280px !important;
}
/* FIX: If a .grid.grid-2 contains only ONE panel, make it single-column */
.grid.grid-2:has(.panel:first-child:last-child) {
    grid-template-columns: 1fr !important;
}
/* Floating notification panel - ALWAYS visible, never transparent */
.notif-panel {
  position: fixed !important;
  top: 70px !important;
  right: 25px !important;

  width: 340px;
  max-height: 380px;
  overflow-y: auto;

  background: #050510 !important;        /* FULL SOLID BACKGROUND */
  backdrop-filter: none !important;       /* disable blur so no transparency */
  box-shadow: 0 0 25px rgba(0,255,200,0.35);

  border: 1px solid rgba(0,255,200,0.35);
  border-radius: 18px;

  padding: 20px;

  z-index: 999999 !important;             /* above EVERYTHING */
}
/* FINAL FIX — Notification Panel */
#notif-panel {
  position: fixed;
  top: 65px;
  right: 20px;
  width: 320px;
  padding: 16px;
  background: rgba(0, 12, 14, 0.95);   /* solid neon dark */
  border: 1px solid rgba(0, 255, 220, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,255,220,0.3);
  backdrop-filter: blur(6px);
  z-index: 999999;
}

/* Neon green heading */
.notif-header {
  color: #00ffc4;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Ensure it actually hides */
.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 255, 180, 0.1);
  border: 1px solid rgba(0, 255, 200, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(0,255,220,0);
}

.user-icon {
  font-size: 20px;
  color: #00ffc8;
}
.emoji-logo {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
}
/* ---------- PIPELINE PILL ANIMATION ---------- */
.pipeline-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;

  /* NEW — clean background */
  background: rgba(0, 0, 0, 0.3);

  /* SUBTLE border */
  border: 1px solid rgba(0, 255, 200, 0.15);

  /* remove heavy glow */
  box-shadow: 0 0 6px rgba(0, 255, 200, 0.10);

  font-size: 11px;
}

.pipeline-label {
  font-weight: 600;
  letter-spacing: 1px;
  color: #00ffc8;
  text-transform: uppercase;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #cffff6;
}

.pipeline-node {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 200, 0.25);
  background: rgba(0,0,0,0.7);
  opacity: 0.6;
  transition: 0.25s ease;
}

.pipeline-arrow {
  opacity: 0.5;
}

/* active “glow” as the packet travels */
.pipeline-node.active {
  opacity: 1;
  color: #001010;
  background: linear-gradient(120deg, #00ffe0, #00ffaa);

  /* reduce glow drastically */
  box-shadow: 0 0 4px rgba(0,255,210,0.35);

  border-color: rgba(0,255,230,0.4);
}

/* ---------- LEADERBOARD LAYOUT ---------- */
.leaderboard-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.4fr;
  gap: 18px;
  margin-top: 22px;
}

.leaderboard-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Table */
.lb-table-wrapper {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 200, 0.25);
  background: rgba(0, 0, 0, 0.4);
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.lb-table th {
  padding: 10px 12px;
  text-align: left;
  letter-spacing: 0.8px;
  background: rgba(0, 255, 200, 0.16);
  color: #00ffe0;
}

.lb-table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0, 255, 200, 0.08);
  color: #eafffb;
}

.lb-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.35);
}

.lb-table tr:hover {
  background: rgba(0, 255, 200, 0.08);
}

/* Summary block */
.lb-summary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lb-summary-card {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 200, 0.25);
  background: rgba(0, 0, 0, 0.45);
}

.lb-summary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #99ffe9;
  opacity: 0.8;
}

.lb-summary-value {
  font-size: 18px;
  margin-top: 4px;
}

.lb-chip {
  margin-top: 4px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 200, 0.5);
}

/* Badges in table */
.lb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(0, 255, 200, 0.4);
  background: rgba(0, 0, 0, 0.7);
}

.lb-badge-whale {
  border-color: #00eaff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.lb-badge-legit {
  border-color: #64ff91;
}

.lb-badge-radar {
  border-color: #ffb74d;
}

/* ---------- INTEGRATION PANELS (Discord / Telegram) ---------- */
.integration-panel {
  position: relative;
}

.integration-pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 200, 0.6);
}

.integration-pill-ok {
  background: rgba(0, 255, 200, 0.15);
  color: #00ffc2;
}

.integration-body {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.integration-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

.integration-label {
  opacity: 0.7;
  color: #9affea;
}

.integration-value {
  text-align: right;
  font-weight: 500;
}

/* Responsive: stack when narrow */
@media (max-width: 1100px) {
  .leaderboard-grid {
    grid-template-columns: 1fr;
  }
}
.leaderboard-single {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.leaderboard-single .panel {
  width: 100%;
}

/* --------------------------- */
/* FORCE REDUCE GLOW OVERRIDE */
/* --------------------------- */

/* All panels (Leaderboard, Discord, Telegram, Overview boxes) */
.panel {
  background: rgba(0, 20, 20, 0.45) !important;
  border: 1px solid rgba(0, 255, 200, 0.10) !important;
  box-shadow: 0 0 4px rgba(0, 255, 200, 0.06) !important;
  backdrop-filter: blur(3px) !important;
}

/* Table wrappers */
.lb-table-wrapper,
.tx-table-wrapper {
  border: 1px solid rgba(0, 255, 200, 0.12) !important;
  box-shadow: 0 0 3px rgba(0, 255, 200, 0.05) !important;
}

/* Integration cards */
.integration-panel {
  border: 1px solid rgba(0, 255, 200, 0.13) !important;
  box-shadow: 0 0 4px rgba(0, 255, 200, 0.05) !important;
}

/* Glow dots + active items */
.nav-item-active,
.status-dot,
.nav-dot {
  box-shadow: 0 0 4px rgba(0, 255, 200, 0.20) !important;
}

/* Pipeline pill glow */
.pipeline-pill {
  box-shadow: 0 0 3px rgba(0, 255, 200, 0.08) !important;
}

/* Badges glow */
.badge,
.integration-pill-ok {
  box-shadow: 0 0 4px rgba(0, 255, 200, 0.12) !important;
}

/* Text highlight glow */
.highlight {
  text-shadow: 0 0 4px rgba(0, 255, 200, 0.20) !important;
}
/* ----------- SETTINGS PANEL CLEAN UI ----------- */

.settings-panel {
  max-width: 600px;
  background: rgba(0, 20, 20, 0.45) !important;
  border: 1px solid rgba(0, 255, 200, 0.12) !important;
  box-shadow: 0 0 6px rgba(0, 255, 200, 0.08) !important;
  padding: 25px;
  border-radius: 16px;
}

.settings-body {
  margin-top: 20px;
}

.settings-label {
  font-size: 14px;
  opacity: 0.9;
}

.settings-input {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 200, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #eafff9;
  outline: none;
}

.settings-input:focus {
  border-color: rgba(0, 255, 200, 0.45);
  box-shadow: 0 0 6px rgba(0, 255, 200, 0.15);
}

.save-btn {
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(0, 255, 200, 0.12);
  border: 1px solid rgba(0, 255, 200, 0.3);
  color: #00ffd8;
  cursor: pointer;
  transition: 0.2s;
}

.save-btn:hover {
  background: rgba(0, 255, 200, 0.22);
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.15);
}
/* Spacing for Settings layout */
#view-settings .view-header {
  margin-bottom: 30px !important;
}

.settings-panel {
  margin-top: 7px !important;
}
/* Remove background glow behind notification panel */
.notif-panel {
  background: rgba(0, 0, 0, 0.85);   /* Solid clean black */
  box-shadow: none !important;       /* Remove glow */
  backdrop-filter: none !important;  /* Remove blur light */
}
/* Reduce glow intensity on Live Feed items */
.activity-item:hover {
  box-shadow: 0 0 6px rgba(0, 255, 200, 0.15) !important;
  transform: translateY(-1px);
  background: rgba(0, 20, 20, 0.6); /* slight highlight but clean */
}
/* Mild glow for top stat cards */
.stat-card {
  box-shadow: 0 0 6px rgba(0, 255, 200, 0.12) !important;
  background: rgba(0, 10, 10, 0.65); /* clean and subtle */
  border: 1px solid rgba(0, 255, 200, 0.08);
}

.fraud-monitor-center {
  height: 160px;          /* Adjust height of the panel space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;     /* Horizontal center */
  text-align: center;
}

#fraud-mini-score {
  font-size: 32px;
  font-weight: 600;
  color: #00ffee;
  text-shadow: 0 0 10px rgba(0,255,230,0.4);
}

#fraud-mini-status {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
}
.fraud-header-fix {
  margin-bottom: 30px;   /* Adds clean spacing below the sentence + buttons */
}
.fraud-monitor-panel {
  padding-bottom: 40px !important;
}

.fraud-monitor-content {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#fraud-mini-score {
  font-size: 40px;
  font-weight: 700;
  color: #00f5e9;
  text-shadow: 0 0 6px rgba(0,255,230,0.2);
}

#fraud-mini-status {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}
/* Make the box smaller and left aligned */
.fraud-monitor-box {
  width: 380px;             /* Smaller clean size */
  min-height: 220px;
  margin-top: 30px;         /* Spacing below buttons */
  padding: 25px 30px;
  border-radius: 14px;
  background: rgba(0, 20, 20, 0.3);
  border: 1px solid rgba(0,255,230,0.09);
}

/* Center content inside box */
.fraud-monitor-content {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* LEFT align the content */
}

/* Bigger % but clean */
#fraud-mini-score {
  font-size: 38px;
  font-weight: 700;
  color: #00fdea;
  text-shadow: 0 0 6px rgba(0,255,230,0.2);
  margin-bottom: 8px;
}

/* Status text */
#fraud-mini-status {
  font-size: 15px;
  opacity: 0.75;
}
