html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.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%;
}

body {
  margin-bottom: 40px;
  background-color: #f5f5f5;
}

.tabulator {
  background-color: #ffffff;
  border: none !important;
  border-radius: 8px 8px 0 0;
}

.tabulator .tabulator-tableholder {
  background-color: #ffffff;
  overflow-x: auto;
}

.tabulator .tabulator-tableholder .tabulator-table {
  background-color: #ffffff;
}

.tabulator .tabulator-tableholder .tabulator-placeholder,
.tabulator .tabulator-tableholder .tabulator-placeholder-contents {
  background-color: #ffffff;
}

.tabulator .tabulator-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff !important;
  border-bottom: 1px solid #e0e0e0;
}

.tabulator .tabulator-header .tabulator-col {
  background: transparent !important;
  border-right: none !important;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable {
  border-right: none !important;
}

.tabulator .tabulator-header .tabulator-col-title {
  font-weight: 400;
  margin-left: 4px;
  margin-bottom: 8px;
  color: #222;
}

.tabulator .tabulator-header .tabulator-col-content {
  padding: 14px 12px 6px;
}

.tabulator .tabulator-header .tabulator-header-filter {
  padding: 0 2px 12px;
}

.tabulator .tabulator-header .tabulator-header-filter input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
}

.tabulator .tabulator-row {
  border-bottom: 1px solid #e0e0e0;
}

.tabulator .tabulator-row:nth-child(odd) {
  background: #f7f7f7;
}

.tabulator .tabulator-row:nth-child(even) {
  background: #ffffff;
}

.tabulator .tabulator-cell {
  border-right: none !important;
  padding: 14px 12px;
}

.tabulator .tabulator-row .tabulator-cell:first-child {
  padding-left: 12px;
}

.tabulator .tabulator-row.tabulator-selected {
  background: #e7eefb;
}

.vma-table-splash {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  transition: opacity 0.2s ease;
}

.vma-table-splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.vma-table-splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #2b2b2b;
  font-size: 0.9rem;
}

.vma-table-splash__spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #dbe4ef;
  border-top-color: #258cfb;
  animation: vma-table-spin 0.8s linear infinite;
}

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