/* ==========================================================
   Systems Studio Global UI Components
   Neon green action buttons / PDF download buttons
   ========================================================== */

.ss-action-btn,
.ss-pdf-download,
.pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid #66ff99;
  color: #66ff99 !important;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(0, 255, 120, 0.08);
  box-shadow:
    0 0 12px rgba(0, 255, 120, 0.55),
    0 0 28px rgba(0, 255, 120, 0.25),
    inset 0 0 12px rgba(0, 255, 120, 0.08);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.ss-action-btn:hover,
.ss-pdf-download:hover,
.pdf-download:hover {
  color: #021006 !important;
  background: #66ff99;
  box-shadow:
    0 0 18px rgba(0, 255, 120, 0.95),
    0 0 42px rgba(0, 255, 120, 0.55),
    0 0 80px rgba(0, 255, 120, 0.22);
  transform: translateY(-2px);
}

.ss-pdf-download::before,
.pdf-download::before {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(0, 255, 120, 0.35);
}

.ss-download-card,
.ss-info-card {
  border: 1px solid rgba(102, 255, 153, 0.35);
  border-radius: 22px;
  background: rgba(0, 18, 9, 0.72);
  box-shadow:
    0 0 18px rgba(0, 255, 120, 0.10),
    inset 0 0 18px rgba(0, 255, 120, 0.03);
}

.ss-neon-title {
  color: #66ff99;
  text-shadow:
    0 0 10px rgba(0, 255, 120, 0.65),
    0 0 24px rgba(0, 255, 120, 0.28);
}
