.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.user-info span {
  margin-right: 1.5rem;
  color: var(--muted);
  font-weight: 500;
}

#subscription-status {
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.status-active {
  color: #059669;
  background-color: #d1fae5;
}

.status-inactive {
  color: #d97706;
  background-color: #fef3c7;
}

#logoutButton {
  background-color: var(--danger);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

#logoutButton:hover {
  background-color: #b91c1c;
}
