:root {
  --primary: #4e9c3b;
  --primary-hover: #3e7c2e;
  --primary-focus: rgba(78, 156, 59, 0.125);
  --primary-inverse: #FFF;
}

.error {
  color: #d81b60;
  background-color: rgba(216, 27, 96, 0.1);
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.success {
  color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.1);
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.75em;
  font-weight: bold;
  text-align: center;
  border-radius: 0.25rem;
}

.status-pending {
  background-color: #ffc107;
  color: #212529;
}

.status-active {
  background-color: #28a745;
  color: white;
}

.status-suspended {
  background-color: #dc3545;
  color: white;
}

.status-terminated {
  background-color: #6c757d;
  color: white;
}

.inline-form {
  display: inline;
  margin: 0;
}

.empty-state {
  text-align: center;
  padding: 2rem 0;
}

.plan-card {
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.plan-card .price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
}

.plugin-card {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: rgba(0,0,0,0.05);
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  display: none;
  z-index: 1000;
}

.notification.success {
  background-color: #4caf50;
}

.notification.error {
  background-color: #f44336;
}

.list-container {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.list-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.list-item:hover {
  background-color: var(--primary-focus);
}
