/* Clickable customer order rows */
.hbl-account-orders-table tbody tr[data-order-url] {
  cursor: pointer;
  transition: background-color .16s ease, box-shadow .16s ease;
}

.hbl-account-orders-table tbody tr[data-order-url]:hover {
  background: #f1faf8;
  box-shadow: inset 3px 0 0 #00897b;
}

.hbl-account-orders-table tbody tr[data-order-url]:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(0, 137, 123, .3);
  outline-offset: -3px;
  background: #f1faf8;
}

.hbl-account-orders-table tbody tr[data-order-url]:active {
  background: #e6f6f2;
}

@media (prefers-reduced-motion: reduce) {
  .hbl-account-orders-table tbody tr[data-order-url] {
    transition: none;
  }
}
