.rc-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #edf0f4;
  background: #f8fafc;
  box-shadow: 0 10px 24px rgba(5, 11, 44, 0.04);
}

.rc-alert--error {
  background: #fff7f7;
  border-color: #f3d6d6;
}

.rc-alert--success {
  background: #f3fbf6;
  border-color: #cfeedd;
}

.rc-alert--warning {
  background: #fffaf0;
  border-color: #f4e3b4;
}

.rc-alert--info {
  background: rgba(201, 199, 193, 0.10);
  border-color: rgba(201, 199, 193, 0.35);
}

.rc-alert__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
}

.rc-alert--error .rc-alert__icon {
  color: #b42318;
  background: #fee4e2;
}

.rc-alert--success .rc-alert__icon {
  color: #067647;
  background: #dcfae6;
}

.rc-alert--warning .rc-alert__icon {
  color: #b54708;
  background: #fef0c7;
}

.rc-alert--info .rc-alert__icon {
  color: var(--rc-dark);
  background: rgba(201, 199, 193, 0.18);
}

.rc-alert__content {
  flex: 1;
  min-width: 0;
}

.rc-alert__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 3px;
  color: #071033;
}

.rc-alert--error .rc-alert__title {
  color: #912018;
}

.rc-alert--success .rc-alert__title {
  color: #05603a;
}

.rc-alert--warning .rc-alert__title {
  color: #93370d;
}

.rc-alert--info .rc-alert__title {
  color: var(--rc-dark);
}

.rc-alert__message {
  font-size: 13px;
  line-height: 1.55;
  color: #667085;
}

.rc-alert + .button,
.rc-alert + button {
  margin-top: 14px;
}

/* ── Status badges ──────────────────────────────────────────────────────────
 * Compact inline pills for booking/payment status labels.
 * Used on: review confirmation screen, manage-booking result card.
 * ──────────────────────────────────────────────────────────────────────── */

.rc-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.rc-badge--success {
  background: #dcfae6;
  color: #067647;
}

.rc-badge--warning {
  background: #fef0c7;
  color: #b54708;
}

.rc-badge--error {
  background: #fee4e2;
  color: #b42318;
}