/* Minimal card UI for result display */

.rcs-card-ui {
  background: #fff;
  color: #111;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}

.rcs-card-header {
  background: #ff7a00;
  color: #fff;
  padding: 10px 12px;
}

.rcs-card-game {
  font-weight: 700;
  font-size: 15px;
}

.rcs-card-body {
  padding: 12px;
  font-size: 14px;
}

.rcs-row {
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:6px 0;
  border-bottom: 1px dashed #f1f1f1;
}

.rcs-row .rcs-key {
  color:#666;
  font-weight:600;
}

.rcs-row .rcs-val {
  color:#111;
  font-weight:700;
  text-align:right;
}

.rcs-pre {
  background: transparent;
  border: none;
  color: #111;
  margin: 0;
  font-size: 13px;
  white-space: pre-wrap;
}

/* Ensure result area is visible on dark themes */
.rcs-result {
  background: transparent !important;
  padding: 0 !important;
  min-height: auto !important;
  z-index: 99999 !important;
  position: relative !important;
}
