/* Keep minimal; theme provides most styles */
.dnha-route-card{margin-bottom:14px}


/* Booking button loading spinner */
.dnha-btn-submit{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dnha-spinner{
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: dnha-spin .7s linear infinite;
}

.dnha-btn-submit.is-loading .dnha-spinner{
  display: inline-block;
}

@keyframes dnha-spin{
  to{ transform: rotate(360deg); }
}
