/* ======================================================
   UI TABLES – GLOBAL HEADER
   ====================================================== */

.card table thead {
  background: linear-gradient(
    180deg,
    rgba(18, 26, 44, 0.98),
    rgba(10, 15, 28, 0.98)
  );
}

.card table thead th {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.45px;

  padding: 12px 10px;
  text-align: left;
  white-space: nowrap;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* ======================================================
 * ACTIVE ALARMS – ACK / RESOLVE PILL BUTTONS
 * ====================================================== */

.alarm-actions {
  display: flex;
  gap: 8px;
}

/* Base pill */
.alarm-actions button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;

  padding: 6px 14px;
  min-width: 72px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  cursor: pointer;
  user-select: none;

  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

/* ===== ACK (AMBER) ===== */
.alarm-actions .btn-ack {
  background: linear-gradient(
    180deg,
    rgba(245,158,11,0.85),
    rgba(217,119,6,0.85)
  );
  border-color: rgba(245,158,11,0.6);
  color: #ffffff;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    0 4px 10px rgba(245,158,11,0.35);
}

.alarm-actions .btn-ack:hover {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.45),
    0 6px 14px rgba(245,158,11,0.55);
}

.alarm-actions .btn-ack:active {
  transform: scale(0.96);
}

/* ===== RESOLVE (GREEN) ===== */
.alarm-actions .btn-resolve {
  background: linear-gradient(
    180deg,
    rgba(34,197,94,0.85),
    rgba(22,163,74,0.85)
  );
  border-color: rgba(34,197,94,0.6);
  color: #ffffff;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    0 4px 10px rgba(34,197,94,0.35);
}

.alarm-actions .btn-resolve:hover {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.45),
    0 6px 14px rgba(34,197,94,0.55);
}

.alarm-actions .btn-resolve:active {
  transform: scale(0.96);
}

/* ======================================================
   SUBSCRIBERS HEADER (TITLE + ACTIONS)
====================================================== */
.subscribers-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

