/* Shared styles for the campaigns (/campaigns, /c) and pricing surfaces */

.button {
  display: inline-block;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button:hover {
  background: #e6c200;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.button.secondary:hover {
  border-color: #ffd700;
  background: transparent;
}

.button.danger {
  background: #dc3545;
  color: #fff;
}

.button.danger:hover {
  background: #b02a37;
}

.button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-active {
  background: #d4edda;
  color: #155724;
}

.pill-suspended {
  background: #fff3cd;
  color: #856404;
}

.pill-past_due {
  background: #f8d7da;
  color: #721c24;
}

.pill-none,
.pill-canceled {
  background: #e2e3e5;
  color: #383d41;
}

.notice {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.notice-info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.notice-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.notice-warning {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.notice-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
