/* Cartha OpenClaw Dashboard — Login Simplification */

/* Hide WebSocket URL field (first field) */
.login-gate__form > .field:nth-of-type(1),
.login-gate__form > .form-field:nth-of-type(1),
.login-gate__form > label.field:nth-of-type(1) {
  display: none !important;
}

/* Hide Gateway Token field (second field) */
.login-gate__form > .field:nth-of-type(2),
.login-gate__form > .form-field:nth-of-type(2),
.login-gate__form > label.field:nth-of-type(2) {
  display: none !important;
}

/* Hide How to connect help section */
.login-gate__help {
  display: none !important;
}

/* Chat UI polish — subtle tool/exec lines */
.chat-line.other {
  opacity: 0.6;
  transition: opacity 0.2s;
}
.chat-line.other:hover {
  opacity: 1;
}
.chat-line.other .chat-msg {
  gap: 2px !important;
}
.chat-line.other .chat-bubble {
  padding: 4px 10px !important;
  font-size: 13px;
}
.chat-line.other + .chat-line.other {
  margin-top: -4px;
}
.chat-line.other + .chat-line.other .chat-role {
  display: none !important;
}
