.ucrc { 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; 
  color: #03212e;
  isolation: isolate;
  position: relative;
  clear: both;
  float: none;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.ucrc * { 
  box-sizing: border-box;
}

.ucrc__wrap { 
  max-width: 1040px; 
  margin: 0 auto 3rem; 
  padding: 1rem; 
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  clear: both;
  float: none !important;
  display: block !important;
}
.ucrc__header { margin-bottom: 1.5rem; }
.ucrc__title { 
  margin: 0 0 0.25rem; 
  font-size: 1.85rem; 
  font-weight: 700; 
  color: #03212e; 
  letter-spacing: -0.02em;
}
.ucrc__subtitle { 
  margin: 0; 
  color: #425766; 
  font-size: 0.95rem; 
  line-height: 1.5; 
}

.ucrc__layout { 
  display: flex; 
  flex-direction: column;
  gap: 1.75rem; 
  width: 100%;
  max-width: 100%;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.ucrc__container {
  border: 2px solid #083141;
  border-radius: 20px;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  clear: both;
  float: none !important;
  overflow: visible;
}

.ucrc__sectionTitle { 
  margin: 0 0 0.75rem; 
  font-size: 1.35rem; 
  font-weight: 800; 
  color: #083141; 
  letter-spacing: -0.02em;
}

.ucrc__panel {
  margin-bottom: 1.75rem;
}

.ucrc__card {
  background: #ffffff;
  border: 2px solid #dde7ea;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
}

.ucrc__inst {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 2px solid #e5e7eb;
  border-left: 4px solid #083141;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.ucrc__inst strong {
  color: #083141;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.ucrc__inst ul { 
  margin: 0.75rem 0 0 1.5rem; 
  padding: 0; 
  list-style: none;
}

.ucrc__inst ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.ucrc__inst ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #083141;
  font-weight: 800;
  font-size: 1.1rem;
}

.ucrc__inst ul li strong {
  color: #083141;
  font-weight: 600;
  display: inline;
  margin: 0;
  font-size: 0.9rem;
}

.ucrc__grid { 
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}
.ucrc__grid .ucrc__field {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 100%;
}
.ucrc__grid--2 { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ucrc__grid--3 { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { 
  .ucrc__grid, .ucrc__grid--2, .ucrc__grid--3 { 
    display: flex;
    flex-direction: column;
  }
  .ucrc__grid .ucrc__field {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.ucrc__field label { 
  display: block; 
  font-weight: 500; 
  margin-bottom: 0.5rem; 
  color: #143747; 
  font-size: 0.88rem; 
}
.ucrc__field input[type="number"], .ucrc__field input[type="text"], .ucrc__field select {
  width: 100%;
  border: 1px solid #d1d9df;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  background: #ffffff;
  color: #03212e;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ucrc__field input[type="number"]:focus, .ucrc__field input[type="text"]:focus, .ucrc__field select:focus {
  outline: none;
  border-color: #59747c;
  box-shadow: 0 0 0 2px rgba(89, 116, 124, 0.18);
}
.ucrc__field input[type="range"] { 
  width: 100%; 
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
}
.ucrc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  cursor: pointer;
}
.ucrc__field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.ucrc__hint { 
  margin-top: 0.5rem; 
  font-size: 0.85rem; 
  color: #5b6a72; 
  line-height: 1.5; 
}
.ucrc__formattedValue {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #5b6a72;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  transition: opacity 0.2s;
  opacity: 1;
  display: block;
  visibility: visible;
}
.ucrc__field #ucrc_spend {
  color: transparent;
  position: relative;
  z-index: 1;
}
.ucrc__field #ucrc_spend:focus {
  color: #03212e;
}
.ucrc__field #ucrc_spend:focus ~ .ucrc__formattedValue {
  opacity: 0;
  transition: opacity 0.2s;
}
/* Ensure formatted value is visible when input is not focused */
.ucrc__field #ucrc_spend:not(:focus) ~ .ucrc__formattedValue {
  opacity: 1 !important;
}

.ucrc__divider { 
  height: 1px; 
  background: #d7e3e7; 
  margin: 1.25rem 0; 
  border: none;
}

.ucrc__actions { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  align-items: center;
}

.ucrc-btn {
  border: 2px solid #083141;
  background: #083141;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.ucrc-btn:hover { 
  background: #03212e; 
  border-color: #03212e; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.ucrc-btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(8, 49, 65, 0.3);
  letter-spacing: 0.3px;
}
.ucrc-btn--large:hover {
  box-shadow: 0 6px 16px rgba(8, 49, 65, 0.4);
  transform: translateY(-1px);
}
.ucrc-btn--secondary {
  background: transparent;
  border-color: #59747c;
  color: #083141;
  box-shadow: none;
  font-weight: 600;
}
.ucrc-btn--secondary:hover { 
  background: #f0f7fa; 
  border-color: #59747c; 
}

.ucrc__status { margin-top: 12px; display: grid; gap: 8px; }
.ucrc__loading, .ucrc__ok, .ucrc__warn {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.ucrc__loading { 
  background: #f0f7fa; 
  border: 2px dashed #d7e3e7; 
  color: #5b6a72; 
}
.ucrc__loading--initial {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f7fa 100%);
  border: 2px solid #0ea5e9;
  border-style: dashed;
  color: #083141;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.ucrc__ok { background: #e6f5ea; border: 2px solid #166534; color: #166534; }
.ucrc__warn { background: #fef3c7; border: 2px solid #f59e0b; color: #92400e; }
.ucrc__muted { color: #6b7280; }

.ucrc__summary { 
  margin: 1rem 0;
}

.ucrc__summaryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.ucrc__summaryCard {
  background: linear-gradient(135deg, #f0f7fa 0%, #ffffff 100%);
  border: 2px solid #083141;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ucrc__summaryCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ucrc__summaryCard--full {
  grid-column: 1 / -1;
}

.ucrc__summaryLabel {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5b6a72;
  margin-bottom: 0.5rem;
  letter-spacing: 0.8px;
}

.ucrc__summaryValue {
  font-size: 1.5rem;
  font-weight: 800;
  color: #083141;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ucrc__summaryWeights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ucrc__weightBadge {
  display: inline-block;
  background: #083141;
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .ucrc__summaryGrid {
    grid-template-columns: 1fr;
  }
  .ucrc__summaryCard--full {
    grid-column: 1;
  }
}

/* Chart/Visualization styles */
.ucrc__chartContainer {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #dde7ea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ucrc__chartTitle {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #083141;
  letter-spacing: -0.01em;
}

.ucrc__barChart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ucrc__barItem {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ucrc__barLabel {
  min-width: 120px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.ucrc__barTrack {
  flex: 1;
  height: 28px;
  background: #f3f4f6;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.ucrc__barFill {
  height: 100%;
  background: #2563eb; /* Default, will be overridden by inline styles */
  border-radius: 6px;
  transition: width 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.ucrc__barValue {
  min-width: 50px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.ucrc__scoreBadge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  background: #e0e7ff;
  color: #1e40af;
}

.ucrc__scoreBadge--high {
  background: #d1fae5;
  color: #065f46;
}

.ucrc__scoreBadge--medium {
  background: #fef3c7;
  color: #92400e;
}

.ucrc__scoreBadge--low {
  background: #fee2e2;
  color: #991b1b;
}

.ucrc__tableWrap { 
  overflow-x: auto; 
  overflow-y: visible;
  margin: 16px 0;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.ucrc__table { 
  width: 100%; 
  min-width: 900px;
  border-collapse: collapse; 
  background: #ffffff; 
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 2px solid #dde7ea;
  table-layout: auto;
}
.ucrc__table th, .ucrc__table td { 
  border-bottom: 2px solid #dde7ea; 
  padding: 0.75rem 0.65rem; 
  text-align: left; 
  font-size: 0.88rem; 
}
.ucrc__table th { 
  background: #f0f7fa; 
  font-weight: 700; 
  color: #083141;
  position: sticky;
  top: 0;
  z-index: 10;
  white-space: nowrap;
}
.ucrc__table td {
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .ucrc__table th, .ucrc__table td {
    padding: 8px 6px;
    font-size: 11px;
  }
  .ucrc__table {
    min-width: 800px;
  }
}

@media (max-width: 768px) {
  .ucrc__wrap {
    padding: 0.75rem;
  }
  .ucrc__container {
    padding: 1.5rem;
  }
  .ucrc__table {
    min-width: 700px;
  }
}
.ucrc__table tr:last-child td { border-bottom: none; }
.ucrc__table tr:hover {
  background: #f9fafb;
}

.ucrc__pc {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border: 2px solid #d1d5db;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ucrc__pc:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #9ca3af;
}
.ucrc__pc--topPick {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 4px solid #10b981;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25), 0 0 0 2px rgba(16, 185, 129, 0.1);
  padding: 1.75rem;
  margin-bottom: 2rem;
  transform: scale(1.02);
}
.ucrc__pc--topPick:hover {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35), 0 0 0 2px rgba(16, 185, 129, 0.15);
  border-color: #059669;
  transform: scale(1.02) translateY(-2px);
}
.ucrc__pc--topPick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}
.ucrc__pcTopBadge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
  z-index: 10;
  transform: rotate(-2deg);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(-2deg) scale(1.05); }
}
.ucrc__pcTitle { 
  font-weight: 800; 
  margin-bottom: 1.25rem; 
  font-size: 1.5rem; 
  color: #083141; 
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-right: 140px;
  line-height: 1.3;
}
.ucrc__pc--topPick .ucrc__pcTitle {
  font-size: 1.65rem;
  color: #065f46;
  margin-bottom: 1.5rem;
}
.ucrc__pcRecommended {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.ucrc__pc--topPick .ucrc__pcRecommended {
  border-width: 3px;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}
.ucrc__pcRecommendedTitle {
  font-weight: 800;
  font-size: 0.9rem;
  color: #1e40af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ucrc__pcPlaces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.ucrc__pcPlace {
  background: #ffffff;
  border: 1px solid #3b82f6;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e40af;
  transition: all 0.2s ease;
}
.ucrc__pcPlace:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}
.ucrc__pcTopReasons {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.ucrc__pc--topPick .ucrc__pcTopReasons {
  border-width: 3px;
  border-color: #d97706;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.15);
}
.ucrc__pcTopReasonsTitle {
  font-weight: 800;
  font-size: 0.9rem;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ucrc__pcTopReasonsList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ucrc__pcTopReasonsList li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #78350f;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
.ucrc__pcTopReasonsList li::first-letter {
  color: #10b981;
  font-weight: 800;
}
.ucrc__pcTopReasonsList li:last-child {
  border-bottom: none;
}
.ucrc__pcRow { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.25rem; 
  margin-top: 1rem;
}
@media (max-width: 760px) { 
  .ucrc__pcRow { 
    grid-template-columns: 1fr; 
  }
  .ucrc__pcTitle {
    padding-right: 0;
  }
}
.ucrc__pcPros, .ucrc__pcCons {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 2px solid;
}
.ucrc__pcPros {
  border-color: #10b981;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.1);
}
.ucrc__pcCons {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  box-shadow: 0 1px 4px rgba(239, 68, 68, 0.1);
}
.ucrc__pc--topPick .ucrc__pcPros {
  border-width: 3px;
  border-color: #059669;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}
.ucrc__pc--topPick .ucrc__pcCons {
  border-width: 3px;
  border-color: #dc2626;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}
.ucrc__pcSub { 
  font-weight: 800; 
  margin-bottom: 0.75rem; 
  font-size: 0.95rem; 
  color: #083141;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ucrc__pcSub--pros {
  color: #065f46;
}
.ucrc__pcSub--cons {
  color: #991b1b;
}
.ucrc__list { 
  margin: 0; 
  padding-left: 0; 
  list-style: none;
  color: #374151; 
  font-size: 0.9rem; 
  line-height: 1.7; 
}
.ucrc__list li { 
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}
.ucrc__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b7280;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}
.ucrc__pcNotes {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-left: 4px solid #083141;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #5b6a72;
  font-style: italic;
  line-height: 1.6;
}

/* Data sources panel */
.ucrc__dataSources {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0f7fa;
  border: 2px solid #dde7ea;
  border-radius: 12px;
}

.ucrc__dataSourcesTitle {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ucrc__dataSourcesTitle::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.2s;
  margin-left: auto;
  padding-left: 8px;
  flex-shrink: 0;
}

.ucrc__dataSourcesTitle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.ucrc__dataSourcesContent {
  display: none;
  margin-top: 12px;
}

.ucrc__dataSourcesContent[aria-hidden="false"] {
  display: block;
}

.ucrc__dataSourceItem {
  margin-bottom: 0.75rem;
  padding: 0.85rem;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #dde7ea;
}

.ucrc__dataSourceName {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: #083141;
}

.ucrc__dataSourceMeta {
  font-size: 0.85rem;
  color: #5b6a72;
  line-height: 1.5;
}

.ucrc__dataSourceMeta strong {
  color: #374151;
}

/* Comparison visualization */
.ucrc__comparisonGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.ucrc__comparisonCard {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.ucrc__comparisonCardTitle {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1f2937;
}

.ucrc__comparisonCardValue {
  font-size: 24px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 4px;
}

.ucrc__comparisonCardLabel {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media print {
  .ucrc__actions, .ucrc__subtitle, .ucrc__dataSources { display: none !important; }
  .ucrc__layout { grid-template-columns: 1fr; }
  .ucrc__card { box-shadow: none; page-break-inside: avoid; }
  .ucrc__table { font-size: 11px; }
  .ucrc__table th, .ucrc__table td { padding: 8px 6px; }
}

