.tabulator .tabulator-col .tabulator-col-title {
  white-space: normal !important; /*enable table title wrap*/
  line-height: 1.1;
}

.toolbar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0;
}

.toolbar .spacer {
  flex: 1;
}

.colvis {
  position: relative;
}

.colvis-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.5rem;
  max-height: 280px;
  overflow: auto;
  display: none;
  min-width: 240px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.colvis-menu label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
  font: 13px/1.4 system-ui, sans-serif;
}

.colvis.open .colvis-menu {
  display: block;
}

.tabulator .tabulator-footer .tabulator-page-size {
  max-width: 200px;
}

.tabulator .tabulator-footer .tabulator-page {
  color: #333;
  background-color: #fbb92d;
  border-color: #fbb92d;
}

.toolbar button {
  color: #333;
  background-color: #fbb92d;
  border-color: #fbb92d;
}

.tabulator .tabulator-cell.auto-calc {
  position: relative;
}

.tabulator .tabulator-cell.auto-calc::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff9800;
}
