.alerts-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.alerts-header {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.alerts-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.alerts-header p {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: #6c757d;
}

.alert-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}

.alert-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.alert-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.alert-status-badge.active {
  background: #d1f4e0;
  color: #136213;
}

.alert-status-badge.triggered {
  background: #ffd6d6;
  color: #dc3545;
}

.alert-status-badge.paused {
  background: #e9ecef;
  color: #6c757d;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #344054;
  line-height: 1.4;
}

#empty-state i {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .alerts-page {
    padding: 15px;
  }

  .alerts-header {
    padding: 18px;
    margin-bottom: 18px;
  }

  .alerts-header h1 {
    font-size: 1.5rem;
  }

  .alert-card {
    padding: 15px;
  }
}
