/* ══════════════════════════════════════════════════════
   broadcast.css — 实时需求页专用（白天风格）
   ══════════════════════════════════════════════════════ */

.bc-table { table-layout: fixed; }

.bc-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }

td .cell-company {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  white-space: normal;
  line-height: 1.35;
  font-size: 12.5px;
  font-weight: 500;
}

.bc-contact {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.35;
  cursor: default;
}

td .cell-email a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  color: var(--text-secondary);
}
td .cell-email a:hover { color: var(--accent); }

td .cell-part {
  display: block;
  word-break: break-all;
  white-space: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--cyan);
  line-height: 1.4;
  cursor: pointer;
}
td .cell-part:hover { color: var(--accent); }
td .cell-part.copied { color: var(--green) !important; }

.bc-brand {
  font-size: 12px; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  display: block;
}

.bc-cond { font-size: 11px; color: var(--text-muted); }
.bc-qty  { font-family: var(--font-mono); font-size: 12px; }

td .cell-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: help;
}

.sync-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius-md); padding: 10px 14px; margin-bottom: 14px;
}
.sync-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #94a3b8; flex-shrink: 0;
}
.sync-status-dot.running {
  background: #10b981;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}
.sync-status-text { font-size: 13px; color: var(--text-secondary); flex: 1; min-width: 120px; }
.sync-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.bc-log-wrap { margin-bottom: 14px; }
.bc-log-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.bc-log-title { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; }

.bc-table-outer {
  overflow-x: auto;
  max-height: calc(100vh - 380px);
  overflow-y: auto;
}

.send-bar {
  display: flex; align-items: center; gap: 10px;
  background: #f0fdf4; border: 1px solid #a7f3d0;
  border-radius: var(--radius-md); padding: 9px 14px;
  margin-bottom: 12px;
}
.send-bar-count { font-size: 13px; color: var(--green); font-weight: 600; }
.send-bar-btns  { display: flex; gap: 8px; margin-left: auto; }

.bc-table td { overflow: hidden; }

.bc-table tbody tr.partner-row { background: #fffbeb; }
.bc-table tbody tr.partner-row:hover { background: #fef3c7; }
