.booking-identity-card {
  gap: 12px;
}

.booking-identity-card .booking-form-title span {
  line-height: 1.45;
}

.booking-identity-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-identity-upload {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 12px;
  position: relative;
}

.booking-identity-upload > span:first-child {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.booking-identity-upload small {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.booking-identity-upload input {
  inset: 0;
  opacity: 0;
  position: absolute;
}

.booking-identity-status {
  align-items: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: #64748b;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  min-height: 44px;
  overflow: hidden;
  padding: 8px;
  text-align: center;
  text-overflow: ellipsis;
}

.booking-identity-upload.is-ready {
  background: #ecfdf5;
  border-color: #86efac;
}

.booking-identity-upload.is-ready .booking-identity-status {
  border-color: #86efac;
  color: #047857;
}

.booking-identity-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  padding: 10px 12px;
}

@media (max-width: 680px) {
  .booking-identity-grid {
    grid-template-columns: 1fr;
  }

  .booking-identity-upload {
    min-height: 110px;
  }
}
