.auth-entry {
  display: flex;
  align-items: center;
}

.auth-user-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.08);
}

.auth-user-pill strong,
.expert-agent-head h4 {
  display: block;
}

.auth-user-pill span {
  font-size: 12px;
  color: #5b6475;
}

.auth-modal.hidden {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 460px);
  margin: 10vh auto 0;
  padding: 28px;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.auth-dialog-head,
.expert-agent-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.auth-close-button {
  flex-shrink: 0;
}

.auth-actions {
  margin-top: 18px;
}
