thead th {
  text-wrap: nowrap;
}

.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
  position: static;
}

.table-responsive .dropdown-item {
  padding: .5rem 1rem;
  font-size: 1rem;
  --bs-dropdown-link-active-color: var(--bs-body-color);
}

.table-responsive .dropdown-divider {
  margin: .5rem 0;
}

.table {
  font-size: 15px;
}

.table__action-wrapper,
.action-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: .25rem;
}

th:first-child,
td:first-child {
  position: sticky;
  left: -1px;
  background-color: var(--bs-table-bg);
  z-index: 9;
}

@media (min-width: 787px) {

  th:first-child,
  td:first-child {
    text-wrap: nowrap;
  }
}

.sorter {
  display: inline-block;
  position: relative;
  text-decoration: none !important;
  height: 100%;
  color: inherit !important;
  padding-right: 20px;
}

.sorter::after {
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  right: 0px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  transition: all 1s ease;
  top: calc(50% - 5px);
  background-color: #bdbdbd;
}

.sorter[data-sorting="ascending"]::after,
.sorter[data-sorting="descending"]::after {
  background-color: var(--primary);
}

.sorter[data-sorting="descending"]::after {
  rotate: 180deg;
}

.table tr.inactive>td:not(:last-child) {
  opacity: 0.5;
}

.table-column-selector .dropdown-toggle {
  block-size: 100%;
}

.vehicle-trip__details-table {
  --bs-table-bg: transparent;
}