.user-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.user-card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e4e4e7;
}

.user-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #18181b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #09090b;
}

.user-card-email {
  font-size: 12px;
  color: #71717a;
  margin-top: 2px;
}

.user-field {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid #f4f4f5;
}
.user-field:last-child { border-bottom: none; }
.user-field-label { color: #71717a; }
.user-field-value { color: #09090b; font-weight: 500; }

.badge-coming {
  font-size: 10px;
  background: #f4f4f5;
  color: #71717a;
  border-radius: 9999px;
  padding: 2px 8px;
  font-weight: 500;
}

.upgrade-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #09090b;
  text-decoration: none;
  background: #f4f4f5;
  border-radius: 9999px;
  padding: 3px 10px;
  transition: background 0.15s;
}
.upgrade-link:hover { background: #e4e4e7; }

.debug-btn {
  font-size: 12px;
  font-weight: 600;
  color: #71717a;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.debug-btn:hover { background: #e4e4e7; }
.debug-btn:disabled { opacity: 0.5; cursor: not-allowed; }
