/* Styles unique to the User pane's content - editing this file never affects Assistant or Workspace. */

.labai-field {
  margin-bottom: 12px;
}
.labai-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #718096;
  margin-bottom: 4px;
}
.labai-user-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.labai-user-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.labai-user-status-in .labai-user-status-dot { background: #16a34a; }
.labai-user-status-in { color: #16a34a; }
.labai-user-status-out .labai-user-status-dot { background: #cbd5e0; }
.labai-user-status-out { color: #718096; }

.labai-user-account-name {
  font-size: 16px;
  font-weight: 700;
  color: #0d141a;
}
.labai-user-account-email {
  font-size: 13px;
  color: #718096;
  margin-bottom: 16px;
}
.labai-user-logout {
  background: none;
  border: 1px solid #eef0f3;
  color: #b91c1c;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}
.labai-user-logout:hover { background: #fef2f2; border-color: #fecaca; }

.labai-user-guest-note {
  font-size: 12px;
  color: #718096;
  background: #fafbfc;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 16px;
  line-height: 1.5;
}

.labai-field input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  font-size: 13px;
  box-sizing: border-box;
}
.labai-user-save {
  background: linear-gradient(135deg, #0d9488, #0369a1);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.labai-user-save:hover { opacity: 0.9; }
.labai-user-save-status {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #0d9488;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.labai-user-save-status-visible { opacity: 1; }
