/* ============================================================================
   DISTRIBUIÇÃO EM MASSA — modal + UI
   ============================================================================ */
.cfdm-atendentes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
  background: #f8fafc;
  border-radius: 6px;
}
.cfdm-at-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  cursor: pointer;
  padding: 4px;
}
.cfdm-at-row input { accent-color: #1E5BAA; }

.cfdm-preview {
  margin: 16px 0;
  padding: 12px;
  background: #f1f5f9;
  border-radius: 8px;
}
.cfdm-preview:empty { display: none; }
.cfdm-preview-head { display: flex; flex-direction: column; gap: 4px; }
.cfdm-preview-head strong { font-size: 14px; color: #1E5BAA; }
.cfdm-preview-head small { font-size: 12px; color: #64748b; }

.cfdm-hist {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.cfdm-hist-tbl {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
}
.cfdm-hist-tbl th {
  text-align: left;
  padding: 6px 8px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}
.cfdm-hist-tbl td {
  padding: 6px 8px;
  border-top: 1px solid #f1f5f9;
}
