/* JTPTECH Maps & Directions */

.jtp-directions-wrap {
  margin: 16px 0;
}

.jtp-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #2d6cdf;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1px solid #2d6cdf;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.jtp-directions:hover,
.jtp-directions:focus {
  background: #1f59c2;
  border-color: #1f59c2;
  color: #ffffff !important;
  text-decoration: none;
}
.jtp-directions__icon {
  font-size: 17px;
  line-height: 1;
  pointer-events: none;
}

/* backend verify output */
.jtp-verify-out {
  margin-top: 10px;
  min-height: 1.2em;
}
.jtp-verify-ok {
  color: #2e7d32;
  font-weight: 600;
  margin-top: 10px;
}
.jtp-verify-warn {
  color: #b26a00;
  font-weight: 600;
  margin-top: 10px;
}

/* backend status badges */
.jtp-status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}
.jtp-status--precise { background: #dff0d8; color: #2e7d32; }
.jtp-status--address { background: #fcf3d6; color: #8a6d00; }
.jtp-status--missing { background: #f6d6d6; color: #a12828; }
