/* Reputation page — v20260429a */

.rep-source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #FAFAFA;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}
.rep-source-row:last-child { margin-bottom: 0; }
.rep-source-name { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #111827; }
.rep-source-stats { color: #6B7280; font-variant-numeric: tabular-nums; }
.rep-source-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rep-source-status--connected { background: #D1FAE5; color: #065F46; }
.rep-source-status--disconnected { background: #FEE2E2; color: #991B1B; }
.rep-source-status--soon { background: #F3F4F6; color: #6B7280; }

/* Sentiment doughnut */
.rep-sentiment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.rep-sentiment-cell {
  text-align: center;
  padding: 10px 6px;
  border-radius: 8px;
  background: #FAFAFA;
  border: 1px solid #F3F4F6;
}
.rep-sentiment-num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.rep-sentiment-label {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.rep-sentiment--pos { color: #059669; }
.rep-sentiment--neg { color: #DC2626; }
.rep-sentiment--mix { color: #D97706; }
.rep-sentiment--neu { color: #6B7280; }

/* Themes */
.rep-themes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rep-theme-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #F9FAFB;
}
.rep-theme-row:last-child { border-bottom: 0; }
.rep-theme-name {
  color: #374151;
  font-weight: 500;
  text-transform: capitalize;
}
.rep-theme-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 110px;
  justify-content: flex-end;
}
.rep-theme-bar {
  width: 70px;
  height: 6px;
  background: #F3F4F6;
  border-radius: 999px;
  overflow: hidden;
}
.rep-theme-bar-fill {
  height: 100%;
  border-radius: 999px;
}
.rep-theme-bar-fill--pos { background: #059669; }
.rep-theme-bar-fill--neg { background: #DC2626; }
.rep-theme-count {
  font-size: 12px;
  color: #6B7280;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  text-align: right;
}

/* Inbox summary line */
.rep-inbox-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: #374151;
}
.rep-inbox-stat strong {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-right: 4px;
}
