/* ========================================================================== */
/*  app.cop.css — COP MapLibre plugin styles                                 */
/*  Popup, marker labels, and leader lines for MIL-STD-2525D / APP-6(D)     */
/* ========================================================================== */

/* ---- Popup ---- */
.maplibregl-popup.app-popup {
  z-index: 600;
}
.maplibregl-popup.app-popup .maplibregl-popup-content {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.maplibregl-popup.app-popup .maplibregl-popup-close-button {
  display: none;
}
.app-popup-body {
  font: 13px/1.35 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #FFFFFF;
  background: #1F1F1F;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  padding: 8px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  max-width: 320px;
}
.maplibregl-popup.app-popup .maplibregl-popup-tip {
  border-top-color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.app-popup-title {
  margin: 0 0 4px 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-popup-divider {
  height: 1px;
  background: #FFFFFF;
  opacity: 0.15;
  margin: 4px 0;
}
.app-popup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.app-popup-table td {
  vertical-align: top;
  padding: 1px 6px 1px 0;
}
.app-popup-table td.app-popup-key {
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.7;
}
.app-popup-table td.app-popup-val {
  word-break: break-word;
}
