/* ══════════════════════════════════════════════════════════════
   Telegram Bot Manager — Custom Styles
   ══════════════════════════════════════════════════════════════ */

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B1220;
}
::-webkit-scrollbar-thumb {
  background: #1E2A45;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2A3A5A;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #1E2A45 #0B1220;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Blink animation for terminal-style text ──────────────── */
@keyframes blink {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(0,212,255,0.4), 0 0 20px rgba(0,212,255,0.2); }
  50% { opacity: 0.85; text-shadow: 0 0 4px rgba(0,212,255,0.2), 0 0 10px rgba(0,212,255,0.1); }
}
.animate-blink {
  animation: blink 2.5s ease-in-out infinite;
}

/* ── Breath-glow for premium footer fade ─────────────────── */
@keyframes breath-glow {
  0%, 100% { opacity: 0.5; text-shadow: 0 0 4px rgba(0,212,255,0.08), 0 0 12px rgba(0,212,255,0.02); }
  50% { opacity: 0.85; text-shadow: 0 0 8px rgba(0,212,255,0.2), 0 0 25px rgba(0,212,255,0.08); }
}
.animate-breath-glow {
  animation: breath-glow 3.5s ease-in-out infinite;
}

@keyframes gear-pulse {
  0%, 100% { opacity: 0.45; filter: drop-shadow(0 0 2px rgba(0,212,255,0.1)); }
  50% { opacity: 0.8; filter: drop-shadow(0 0 6px rgba(0,212,255,0.25)); }
}
.animate-gear-pulse {
  animation: gear-pulse 3.5s ease-in-out infinite;
}

.bot-card {
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}

.bot-card:nth-child(1) { animation-delay: 0.05s; }
.bot-card:nth-child(2) { animation-delay: 0.10s; }
.bot-card:nth-child(3) { animation-delay: 0.15s; }
.bot-card:nth-child(4) { animation-delay: 0.20s; }
.bot-card:nth-child(5) { animation-delay: 0.25s; }
.bot-card:nth-child(6) { animation-delay: 0.30s; }
.bot-card:nth-child(7) { animation-delay: 0.35s; }
.bot-card:nth-child(8) { animation-delay: 0.40s; }

/* ── Message items ─────────────────────────────────────────── */
.message-item {
  animation: fadeInUp 0.3s ease-out forwards;
  opacity: 0;
}
.message-item:nth-child(1) { animation-delay: 0.02s; }
.message-item:nth-child(2) { animation-delay: 0.04s; }
.message-item:nth-child(3) { animation-delay: 0.06s; }
.message-item:nth-child(4) { animation-delay: 0.08s; }
.message-item:nth-child(5) { animation-delay: 0.10s; }

/* ── Glow effects for active elements ───────────────────────── */
.glow-cyan {
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
  transition: box-shadow 0.3s ease;
}
.glow-cyan:hover {
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.glow-purple {
  box-shadow: 0 0 15px rgba(124, 92, 255, 0.15);
  transition: box-shadow 0.3s ease;
}
.glow-purple:hover {
  box-shadow: 0 0 25px rgba(124, 92, 255, 0.3);
}

/* ── Button base reset ─────────────────────────────────────── */
select option {
  background-color: #111B2E;
  color: #E6EDF3;
}

/* ── SweetAlert2 overrides ─────────────────────────────────── */
.swal2-popup {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.swal2-input,
.swal2-textarea {
  background-color: #0B1220 !important;
  color: #E6EDF3 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
}

.swal2-input:focus,
.swal2-textarea:focus {
  border-color: #00D4FF !important;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2) !important;
}

/* ── File input styling ────────────────────────────────────── */
input[type="file"]::file-selector-button {
  background-color: #111B2E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #00D4FF;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}
input[type="file"]::file-selector-button:hover {
  background-color: #1A2A45;
}

/* ── Multi-select ──────────────────────────────────────────── */
select[multiple] {
  background-color: #111B2E;
  color: #E6EDF3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
}
select[multiple] option {
  padding: 6px 10px;
  border-radius: 4px;
}
select[multiple] option:checked {
  background: #00D4FF linear-gradient(0deg, #00D4FF 0%, #00D4FF 100%);
  color: #0B1220;
}

/* ── Table row hover ───────────────────────────────────────── */
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* ── Active nav indicator ──────────────────────────────────── */
#sidebar nav a.active {
  background-color: rgba(0, 212, 255, 0.08);
  color: white;
  border-left: 3px solid #00D4FF;
}

/* ── Smooth page transitions ───────────────────────────────── */
main {
  transition: opacity 0.2s ease;
}

/* ══════════════════════════════════════════════════════════════
   ACTIVITY — Professional Table Layout
   ══════════════════════════════════════════════════════════════ */

/* ── Shared clay card base (for filters only) ────────────── */
.clay-card {
  background: linear-gradient(145deg, #162033, #111B2E);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow:
    6px 6px 16px rgba(0, 0, 0, 0.3),
    -3px -3px 10px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

/* ── Stats bar ───────────────────────────────────────────── */
.act-stats-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: #94A3B8;
  padding: 8px 0;
}

.act-stats-bar strong {
  color: #E6EDF3;
  font-weight: 600;
}

.stat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 3px;
  vertical-align: middle;
}
.stat-dot.sent    { background: #00FFA3; }
.stat-dot.pending { background: #F59E0B; }
.stat-dot.running { background: #00D4FF; }
.stat-dot.error   { background: #FF4D6D; }

/* ── Filter bar ──────────────────────────────────────────── */
.act-filter-bar {
  padding: 12px 16px;
}

.act-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.act-filter-group {
  display: flex;
  align-items: center;
}

.act-filter-search {
  position: relative;
  flex: 1;
  min-width: 180px;
}
.act-filter-search .search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #4A5568;
  font-size: 13px;
  pointer-events: none;
}
.act-filter-search input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  background: #0B1220;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: #E6EDF3;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.act-filter-search input:focus {
  border-color: #00D4FF;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.act-filter-search input::placeholder { color: #4A5568; }

.act-filter-group select {
  padding: 8px 12px;
  background: #0B1220;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: #E6EDF3;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 110px;
}
.act-filter-group select:focus {
  border-color: #00D4FF;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

.act-date-input {
  padding: 8px 12px;
  background: #0B1220;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: #E6EDF3;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 130px;
  color-scheme: dark;
}
.act-date-input:focus {
  border-color: #00D4FF;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.act-date-input::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* ── Custom Claymorphism Calendar (Floating Popup) ──────── */
#custom-date-group {
  display: none;
  align-items: center;
  position: relative;
}

.act-cal-trigger {
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(145deg, #1A2A45, #111B2E);
  color: #94A3B8;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow:
    4px 4px 10px rgba(0, 0, 0, 0.3),
    -2px -2px 6px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.act-cal-trigger:hover {
  color: #E6EDF3;
  border-color: rgba(0, 212, 255, 0.2);
}

.act-calendar-wrapper.clay-card {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: 6px;
  background: linear-gradient(145deg, #1A2A45, #111B2E);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow:
    8px 8px 24px rgba(0, 0, 0, 0.5),
    -4px -4px 14px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 16px;
  width: 310px;
}

/* ── Header: month navigation ──────────────────────────── */
.act-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.act-cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.03);
  color: #94A3B8;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.act-cal-nav:hover {
  background: rgba(255,255,255,0.07);
  color: #00D4FF;
}

.act-cal-title {
  font-size: 14px;
  font-weight: 600;
  color: #E6EDF3;
}

/* ── Weekday headers ───────────────────────────────────── */
.act-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 6px;
}
.act-cal-weekdays span {
  font-size: 10px;
  font-weight: 600;
  color: #4A5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 0;
}

/* ── Day grid ──────────────────────────────────────────── */
.act-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.act-cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  min-height: 36px;
}
.act-cal-cell:hover {
  background: rgba(255,255,255,0.05);
}

.act-cal-empty {
  cursor: default;
}
.act-cal-empty:hover {
  background: transparent;
}

.act-cal-today .act-cal-cell-num {
  color: #00D4FF;
  font-weight: 700;
  background: rgba(0,212,255,0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-cal-selected {
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,92,255,0.15)) !important;
  box-shadow: 0 0 12px rgba(0,212,255,0.1);
}
.act-cal-selected .act-cal-cell-num {
  color: #00D4FF;
  font-weight: 700;
}

.act-cal-cell-num {
  font-size: 12px;
  color: #CBD5E1;
  font-weight: 500;
  line-height: 1;
}

.act-cal-cell-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF4D6D;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.act-cal-has-activity .act-cal-cell-num {
  padding-bottom: 2px;
}

/* ── Footer: clear + selected date ─────────────────────── */
.act-cal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.act-cal-clear {
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: #94A3B8;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.act-cal-clear:hover {
  background: rgba(255,77,109,0.1);
  color: #FF4D6D;
  border-color: rgba(255,77,109,0.2);
}

.act-cal-selected-text {
  font-size: 11px;
  color: #00D4FF;
  font-weight: 500;
}

/* ── Status Filter Radio Buttons ──────────────────────────── */
.act-status-group {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(145deg, #1A2A45, #111B2E);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 3px;
  box-shadow:
    inset 2px 2px 6px rgba(0, 0, 0, 0.3),
    inset -1px -1px 3px rgba(255, 255, 255, 0.02);
}
.act-status-radio {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  color: #94A3B8;
  font-weight: 500;
}
.act-status-radio input {
  display: none;
}
.act-status-radio:has(input:checked) {
  background: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.05);
}
.act-status-radio:hover {
  color: #E6EDF3;
}

/* ── Table wrapper ───────────────────────────────────────── */
.act-table-wrapper {
  background: #111B2E;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow-x: auto;
}

.act-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 900px;
}

.act-table thead th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.15);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Column widths */
.col-preview  { width: auto; min-width: 160px; }
.col-type     { width: 80px; }
.col-status   { width: 110px; }
.col-date     { width: 100px; }
.col-time     { width: 80px; }
.col-bot      { width: 120px; }
.col-user     { width: 120px; }
.col-actions  { width: 50px; text-align: center; }

.col-check input[type="checkbox"] {
  accent-color: #00D4FF;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* ── Table rows ──────────────────────────────────────────── */
.act-row {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.15s ease;
}
.act-row:hover {
  background: rgba(255,255,255,0.02);
}
.act-row td {
  padding: 8px 12px;
  vertical-align: middle;
}

.act-loading {
  padding: 40px 12px !important;
  text-align: center;
  color: #94A3B8;
  font-size: 13px;
}

/* ── Preview ─────────────────────────────────────────────── */
.act-preview-cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.act-preview {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.act-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.act-preview-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: #4A5568;
  font-size: 16px;
}
.act-preview-icon {
  background: rgba(124,92,255,0.08);
  color: #7C5CFF;
  font-size: 18px;
  border: 1px solid rgba(124,92,255,0.1);
}
.act-preview-text {
  color: #CBD5E1;
  font-size: 11px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

/* ── Content cell ────────────────────────────────────────── */
.act-content-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.act-content-text {
  color: #CBD5E1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  font-size: 12px;
}
.act-type-badge {
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  opacity: 0.85;
  white-space: nowrap;
}

/* ── Badges ──────────────────────────────────────────────── */
.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.act-badge-green  { background: rgba(0,255,163,0.08); color: #00FFA3; }
.act-badge-yellow { background: rgba(245,158,11,0.08); color: #F59E0B; }
.act-badge-blue   { background: rgba(0,212,255,0.08); color: #00D4FF; }
.act-badge-red    { background: rgba(255,77,109,0.08); color: #FF4D6D; }
.act-badge-gray   { background: rgba(148,163,184,0.08); color: #94A3B8; }

/* ── Date / Time ─────────────────────────────────────────── */
.act-date-text {
  color: #94A3B8;
  font-size: 11px;
  white-space: nowrap;
}
.act-time-text {
  color: #94A3B8;
  font-size: 11px;
  white-space: nowrap;
}
.act-time-text.pending {
  color: #F59E0B;
}

/* ── Bot ─────────────────────────────────────────────────── */
.act-bot-text {
  color: #E6EDF3;
  font-size: 11px;
  white-space: nowrap;
}

/* ── User ─────────────────────────────────────────────────── */
.act-user-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.act-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4FF, #7C5CFF);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-user-name {
  color: #E6EDF3;
  font-size: 11px;
  white-space: nowrap;
}

/* ── Action buttons ──────────────────────────────────────── */
.act-actions {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.act-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.act-icon-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #00D4FF;
}

/* ── Mobile cards ────────────────────────────────────────── */
.act-mobile-grid {
  display: none;
}

.act-mobile-card {
  padding: 12px;
  border-radius: 14px;
  animation: fadeInUp 0.3s ease-out forwards;
  opacity: 0;
}
.act-mobile-card:nth-child(1) { animation-delay: 0.02s; }
.act-mobile-card:nth-child(2) { animation-delay: 0.04s; }
.act-mobile-card:nth-child(3) { animation-delay: 0.06s; }

.act-mobile-top {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.act-mobile-info {
  flex: 1;
  min-width: 0;
}
.act-mobile-content {
  color: #CBD5E1;
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.act-mobile-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.act-mobile-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
  color: #94A3B8;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.act-mobile-footer .meta-icon {
  width: 14px;
  text-align: center;
  font-size: 10px;
  color: #4A5568;
}
.act-mobile-footer .act-icon-btn {
  margin-left: auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .act-table-wrapper { display: none; }
  .act-mobile-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .act-filter-row { flex-direction: column; align-items: stretch; }
  .act-filter-search { min-width: unset; }
  .act-calendar-wrapper.clay-card { width: 100%; min-width: unset; left: 0; }
}

/* ── Pagination ──────────────────────────────────────────── */
.act-pagination-wrapper {
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
}

.act-pagination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(145deg, #162033, #111B2E);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 6px 12px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.3), -2px -2px 8px rgba(255,255,255,0.02);
}

.act-page-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.act-page-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.06);
  color: #00D4FF;
}
.act-page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.act-page-info {
  font-size: 12px;
  color: #94A3B8;
  padding: 0 8px;
  white-space: nowrap;
}

/* ── SweetAlert2 override ────────────────────────────────── */
.swal-activity-detail {
  border-radius: 16px !important;
}
