.ohs-graphs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin-bottom: 24px;
}

.ohs-cross-table {
  border-collapse: collapse;
  width: 400px;
  max-width: 100%;
  margin: 0 auto 24px auto;
  table-layout: fixed;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 900px) {
  .ohs-graphs-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .ohs-cross-table {
    width: 100%;
    max-width: 400px;
    min-width: 340px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .ohs-cross-table {
    min-width: 100%;
  }
  .ohs-graphs-container {
    gap: 8px;
  }
  .ohs-cross-table {
    margin-left: auto;
    margin-right: auto;
  }
}

.tabulator
  .tabulator-header
  .tabulator-col.tabulator-sortable[aria-sort="ascending"]
  .tabulator-col-content
  .tabulator-col-sorter
  .tabulator-arrow {
  border-top: none;
  border-bottom: 6px solid white !important ;
}

.tabulator
  .tabulator-header
  .tabulator-col.tabulator-sortable[aria-sort="descending"]
  .tabulator-col-content
  .tabulator-col-sorter
  .tabulator-arrow {
  border-bottom: none;
  border-top: 6px solid white !important;
  color: white !important;
}
