/* Shared Latte Beaver auth modal — minimal styles for sites without their own modal CSS. */
.lbauth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lbauth-modal[hidden] {
  display: none !important;
}
.lbauth-dialog {
  background: #fff;
  color: #2f241d;
  border-radius: 12px;
  padding: 24px;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 12px;
}
.lbauth-dialog h2 {
  margin: 0;
  font-size: 20px;
}
.lbauth-dialog p {
  margin: 0;
  color: #6b5e54;
  line-height: 1.5;
}
.lbauth-dialog .lb-auth-dialog-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lbauth-dialog .lb-btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(84, 50, 22, 0.2);
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.lbauth-dialog .lb-btn-primary {
  background: #7c4a25;
  color: #fff;
  border-color: #7c4a25;
}
.lbauth-dialog .lb-btn-outline {
  background: #fff;
}
.lbauth-dialog .lb-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c4a25;
}
.lbauth-dialog .lb-auth-message {
  min-height: 20px;
  font-size: 13px;
}
