.rc-orders {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}

.rc-order {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f9f9f9; /* prata claro */
  color: #333;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8),
              inset 0 -1px 1px rgba(0,0,0,0.05);
}

.rc-order strong {
  font-weight: 600;
  margin-right: 4px;
}

/* Inline container for requests at the top of the chat (without bubble) */
.rc-inline-orders {
  margin: 2px 0 8px 0;
  padding: 0;
  background: transparent;
  border: 0;
}


/* Empty state: when there are no requests, only the inline phrase */
.rc-history > .rc-inline-orders.rc-inline-empty {
  font-size: 12px !important;
  color: var(--rc-muted) !important;
  line-height: 1.3;
  font-style: normal;
  margin: 6px 0 8px 0;
  padding: 0;
}


/* Border radius global para inputs, textarea e select */

input[type=text],
input[type=email],
input[type=password],
textarea,
select {
  border-radius: 12px !important;
}
