/* ======================================================
   UI FILTERS & SEVERITY DOTS
   ====================================================== */

.events-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.events-header-row .section-subline {
  white-space: nowrap;
}

.events-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ================= SEVERITY DOTS ================= */

.sev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.sev-dot.sev-all      { background: #d946ef; }
.sev-dot.sev-info     { background: var(--green); }
.sev-dot.sev-warning  { background: var(--yellow); }
.sev-dot.sev-critical { background: var(--red); }
.sev-dot.sev-gray     { background: var(--gray); }
.sev-dot.sev-ok       { background: var(--green); }

/* ================= FILTER BUTTONS ================= */

.filter-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #e5e7eb;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;

  padding: 6px 12px;
  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 6px rgba(0,0,0,0.35);

  transition: all 0.15s ease;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.08);
}

.filter-btn.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.filter-btn:active {
  transform: scale(0.96);
}

.filter-btn.danger {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.45);
  color: #fecaca;
}

/* ======================================================
   SUBSCRIBERS IMPORT / EXPORT PILLS
====================================================== */

.subscribers-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.import-export-toolbar {
  margin-bottom: 4px;
}

.pill-action {
  font-weight: 600;
}
/* ======================================================
   SUBSCRIBERS – IMPORT / EXPORT ACTIONS
====================================================== */

.subscribers-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Push Import/Export fully to the right */
.import-export-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* Action pills (Import / Export) */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: all 0.2s ease;
}

/* Two-dot indicator */
.action-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9800;
  display: inline-block;
}

/* Import accent */
.action-import:hover {
  background: rgba(76, 175, 80, 0.18);
  border-color: rgba(76, 175, 80, 0.5);
}

/* Export accent */
.action-export:hover {
  background: rgba(33, 150, 243, 0.18);
  border-color: rgba(33, 150, 243, 0.5);
}

/* Make them feel primary */
.action-pill:active {
  transform: translateY(1px);
}
