.single-table {
  margin-bottom: 40px;
  padding-bottom: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #405363d4 transparent;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.single-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 600px;
}

.single-table th {
  padding: 10px;
  background: #405363;
  border: 1px solid #405363;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-align: left;
}

.single-table td,
.single-table tbody th {
  padding: 10px;
  background: transparent;
  border: 1px solid #405363;
  color: #405363;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.single-table caption {
  caption-side: top;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #405363;
}

.single-table::-webkit-scrollbar {
  height: 2px;
  background: #d9d9d9;
}

.single-table::-webkit-scrollbar-track {
  background: transparent;
}

.single-table::-webkit-scrollbar-thumb {
  background: #405363d4;
  border-radius: 3px;
}

.single-table::-webkit-scrollbar:vertical {
  width: 2px;
}

@media (max-width: 768px) {
  .single-table td,
  .single-table th {
    font-size: 12px;
  }
}
