@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --primary: #0e623b; /* EXPORT INC Forest Green */
  --primary-hover: #0a4d2e;
  --primary-glow: rgba(14, 98, 59, 0.15);
  --accent: #e28704; /* EXPORT INC Warm Gold */
  --accent-hover: #c97803;
  --accent-glow: rgba(226, 135, 4, 0.15);
  
  --bg-gradient: radial-gradient(circle at 0% 0%, rgba(14, 98, 59, 0.05) 0%, transparent 40%), 
                 radial-gradient(circle at 100% 100%, rgba(226, 135, 4, 0.03) 0%, transparent 40%), 
                 #f8fafc;
  
  --card-bg: #ffffff;
  --card-border: rgba(14, 98, 59, 0.06);
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #64748b; /* Slate 500 */
  --text-light: #94a3b8; /* Slate 400 */
  
  --success: #10b981; /* Emerald 500 */
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  --success-text: #065f46;
  
  --error: #ef4444; /* Red 500 */
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --error-text: #991b1b;
  
  --info: #3b82f6; /* Blue 500 */
  --info-bg: #eff6ff;
  --info-border: #bfdbfe;
  --info-text: #1e40af;
  
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 25px -5px rgba(14, 98, 59, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-gradient);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header Area */
.mailer-header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo-area {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-image {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.02));
}

p.subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Header Actions / Info Box */
.header-info-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.info-box-item {
  display: flex;
  flex-direction: column;
}

.info-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.info-box-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Stats Row Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 98, 59, 0.15);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card.accent-type::after {
  background: var(--accent);
}

.stat-card.accent-type:hover {
  border-color: rgba(226, 135, 4, 0.2);
}

.stat-card.success-type::after {
  background: var(--success);
}

.stat-card.success-type:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.08);
}

.stat-icon-wrapper.primary-icon {
  background: rgba(14, 98, 59, 0.08);
  color: var(--primary);
}

.stat-icon-wrapper.accent-icon {
  background: rgba(226, 135, 4, 0.08);
  color: var(--accent);
}

.stat-icon-wrapper.success-icon {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.stat-svg {
  width: 24px;
  height: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.15rem;
}

.stat-sub {
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

/* Engine Active Indicator */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Campaign Creator / Console Split Card */
.main-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.main-card:hover {
  box-shadow: var(--shadow-lg);
}

.main-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 600px;
}

@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  .right-column {
    border-left: none !important;
    border-top: 1px solid var(--border);
  }
}

.left-column {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.right-column {
  padding: 3rem;
  background-color: rgba(14, 98, 59, 0.015);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Steps Header and Numbers */
.step-section {
  display: flex;
  flex-direction: column;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-number {
  background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(14, 98, 59, 0.2);
}

.step-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

/* Inputs and Forms */
.form-group {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input[type="text"], 
input[type="datetime-local"], 
textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  background-color: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow-inset);
}

input[type="text"]:focus, 
input[type="datetime-local"]:focus, 
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  background-color: #ffffff;
}

input[type="text"]::placeholder, 
textarea::placeholder {
  color: var(--text-light);
}

textarea.emails {
  min-height: 150px;
  resize: vertical;
}

textarea.message {
  min-height: 250px;
  resize: vertical;
}

/* Safety Warning and Helpers */
.helper-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

#email-counter {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  background: #f1f5f9;
  border-radius: 4px;
}

#safety-warning {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom Sliding Switch for Scheduling */
.schedule-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
  margin-bottom: 1.75rem;
}

.schedule-card:hover {
  border-color: rgba(14, 98, 59, 0.15);
  box-shadow: var(--shadow-sm);
}

.schedule-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.schedule-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.schedule-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: var(--transition);
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.switch input:checked + .slider {
  background-color: var(--primary);
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* Slide Down DateTime Container */
.schedule-time-container {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
}

.schedule-time-container.visible {
  max-height: 120px;
  margin-top: 1.25rem;
  opacity: 1;
}

.schedule-time-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-input-wrapper input {
  padding-right: 2.5rem;
}

.calendar-icon {
  position: absolute;
  right: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 1rem;
}

/* Dispatch Buttons */
.send-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 1.125rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 14px rgba(14, 98, 59, 0.25);
}

.send-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 98, 59, 0.35);
}

.send-btn:active:not(:disabled) {
  transform: translateY(0);
}

.send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.stop-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  padding: 1.125rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
  margin-top: 1rem;
}

.stop-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.stop-btn:active {
  transform: translateY(0);
}

/* Terminal Monitor Console */
.status-section {
  background: #0f172a; /* Slate 900 */
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #1e293b;
  box-shadow: var(--shadow-lg);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.status-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-section h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #38bdf8; /* Sky 400 */
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulse-blue 2s infinite;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.progress-label {
  font-weight: 600;
  color: #94a3b8;
}

.progress-count {
  font-family: 'JetBrains Mono', monospace;
  color: #38bdf8;
  font-weight: 700;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8 0%, #06b6d4 100%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.log-container {
  background: #020617; /* Slate 950 */
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  max-height: 240px;
  overflow-y: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}

.log-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid #0f172a;
}

.log-item:last-child {
  border-bottom: none;
}

.log-email {
  color: #cbd5e1;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

/* Administrative Table Cards */
.table-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
  transition: var(--transition);
}

.table-card:hover {
  box-shadow: var(--shadow-lg);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.table-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.table-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}

.btn-process {
  background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 10px rgba(14, 98, 59, 0.15);
}

.btn-process:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #166534 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(14, 98, 59, 0.25);
}

.btn-process:active:not(:disabled) {
  transform: translateY(0);
}

.btn-process:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inset);
  max-height: 400px;
}

table.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

table.dashboard-table th {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #475569;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 10;
}

table.dashboard-table td {
  padding: 1.125rem 1.25rem;
  color: #334155;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

table.dashboard-table tr:last-child td {
  border-bottom: none;
}

table.dashboard-table tbody tr {
  transition: var(--transition);
}

table.dashboard-table tbody tr:hover {
  background-color: rgba(14, 98, 59, 0.01);
}

.empty-row-text {
  padding: 3rem !important;
  text-align: center;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Status Badges */
.status-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.status-indicator.success { background-color: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-border); }
.status-indicator.error { background-color: var(--error-bg); color: var(--error-text); border: 1px solid var(--error-border); }
.status-indicator.sending { background-color: var(--info-bg); color: var(--info-text); border: 1px solid var(--info-border); }
.status-indicator.waiting { background-color: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.status-indicator.pending { background-color: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.status-indicator.skipped { background-color: #ffe4e6; color: #9f1239; border: 1px solid #fecdd3; }

.status-indicator::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-indicator.success::before { background-color: var(--success); }
.status-indicator.error::before { background-color: var(--error); }
.status-indicator.sending::before { background-color: var(--info); animation: pulse-blue 1.5s infinite; }
.status-indicator.waiting::before { background-color: #d97706; }
.status-indicator.pending::before { background-color: #64748b; }
.status-indicator.skipped::before { background-color: #e11d48; }

/* Cancel / Terminate Action Buttons */
.cancel-btn {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cancel-btn:hover {
  background: var(--error-text);
  color: white;
  border-color: var(--error-text);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.cancel-btn:active {
  transform: translateY(0);
}

/* Premium Toast Notification System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  width: calc(100% - 4rem);
}

.toast {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.toast.success {
  background: rgba(236, 253, 245, 0.95);
  color: var(--success-text);
  border-color: var(--success-border);
}

.toast.error {
  background: rgba(254, 242, 242, 0.95);
  color: var(--error-text);
  border-color: var(--error-border);
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Spinner Utility */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

.spinner-sm {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-blue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}
