html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/* HTMX: hide indicators by default (no-JS friendly) */
.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  display: inline-block;
}

.htmx-show-on-request {
  display: none;
}

.htmx-request .htmx-show-on-request,
.htmx-request.htmx-show-on-request {
  display: inline-flex;
}

.htmx-request .htmx-hide-on-request,
.htmx-request.htmx-hide-on-request {
  display: none;
}

.htmx-request .htmx-disable-on-request,
.htmx-request.htmx-disable-on-request {
  pointer-events: none;
  opacity: 0.7;
}

/* Cross-browser sticky header support for admin data tables */
.flyer-tracking-table,
.sticky-header-table {
  border-collapse: separate;
  border-spacing: 0;
}

.flyer-tracking-table thead th,
.sticky-header-table thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgb(248 250 252);
}

.sticky-header-table thead.bg-gray-50 th {
  background-color: rgb(249 250 251);
}

.flyer-tracking-table thead.bg-slate-50 th,
.sticky-header-table thead.bg-slate-50 th {
  background-color: rgb(248 250 252);
}
