body {
  background: #0b0f13;
}

.navbar {
  background: #0a0a0a !important;
}

.neon-card {
  background: #12171d;
  border: 1px solid rgba(0, 255, 140, 0.25);
  box-shadow: 0 0 12px rgba(0, 255, 140, 0.15);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.neon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 140, 0.6);
  box-shadow: 0 0 18px rgba(0, 255, 140, 0.35);
}

.btn-success {
  background: #00c972;
  border-color: #00c972;
}
.btn-success:hover {
  background: #00e389;
  border-color: #00e389;
}

.btn-outline-success {
  color: #00e389;
  border-color: #00e389;
}
.btn-outline-success:hover {
  background: #00e389;
  color: #0b0f13;
}

.panel-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0b0f13;
}

.form-control, .form-select {
  background: #0a0f14;
  border-color: rgba(255,255,255,0.15);
  color: #e9ecef;
}
.form-control:focus, .form-select:focus {
  background: #0a0f14;
  border-color: #00e389;
  box-shadow: 0 0 0 .25rem rgba(0, 227, 137, .25);
}

.card-title {
  color: #bfffe0;
}

.alert-info {
  background: rgba(0, 255, 140, 0.08);
  border-color: rgba(0, 255, 140, 0.25);
  color: #aaf7d8;
}

.bg-black {
  background: #000 !important;
}

