.dispatch-intel { padding: 0.75rem; }
.dispatch-intel__header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.dispatch-intel__health { font-size: 1.15rem; font-weight: 700; }
.dispatch-intel__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.85rem;
}
.dispatch-intel__section { margin-bottom: 1.25rem; }
.dispatch-intel__section h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.dispatch-intel__list { list-style: none; padding: 0; margin: 0; }
.dispatch-intel__list li { margin-bottom: 0.4rem; }
.dispatch-intel__issue {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 0.4rem;
  background: #fff;
  padding: 0.55rem 0.7rem;
  display: grid;
  gap: 0.15rem;
}
.dispatch-intel__issue:focus-visible { outline: 2px solid #0d6efd; outline-offset: 2px; }
.dispatch-intel__card {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.65rem;
  background: #fff;
}
.dispatch-intel__card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.dispatch-intel__actions { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.dispatch-intel__modal {
  position: fixed; inset: 0; background: rgba(15,23,42,.45);
  display: grid; place-items: center; z-index: 1080; padding: 1rem;
}
.dispatch-intel__modal-card {
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 0.6rem;
  padding: 1rem;
}
.dispatch-intel__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.dispatch-intel__compare pre {
  white-space: pre-wrap;
  background: #f8fafc;
  border-radius: 0.4rem;
  padding: 0.65rem;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .dispatch-intel__compare { grid-template-columns: 1fr; }
  .dispatch-intel__header { flex-direction: column; }
}
