.Users {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: radial-gradient(circle at 8% 8%, #f8fafc 0%, #eef2ff 45%, #f8fafc 80%);
  padding: 10px 12px 16px;
  gap: 12px;
}

.Users .toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
}

.Users .toolbar button {
  flex: 0;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.Users .toolbar-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.Users .user-form-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Users .tab-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.Users .tab-btn {
  background: transparent;
  border: none;
  padding: 12px 8px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.Users .tab-btn.active {
  background: linear-gradient(135deg, rgba(14, 163, 113, 0.12), rgba(12, 138, 96, 0.12));
  color: var(--primary-strong);
}

.Users .form-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.Users .form-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.Users .form-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.Users .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.Users .input-group label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.Users .input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
}

.Users .input-row .icon {
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
  background-size: 18px;
}

.Users .input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
}

.Users .helper-text {
  font-size: 12px;
  color: var(--muted);
}

.Users .start-chat-btn {
  width: 100%;
  height: 46px;
  font-size: 14px;
}

.Users .start-chat-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
