/* Layout for side-by-side tables */
.table-header {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.table-header .h6-tit01 {
  padding-bottom: 0; /* Reset default padding */
}

.table-header .info-text {
  font-size: 14px;
  color: #333;
}

.table-header .info-text .mark-p {
  display: inline-block;
  padding-bottom: 0;
  color: #333; /* Match design color */
}

.table-header .info-text span {
  margin-left: 20px;
  position: relative;
}

.table-header .info-text span::before {
  content: '|';
  position: absolute;
  left: -12px;
  color: #ccc;
}

.table-area {
  display: flex;
  justify-content: space-between;
}

.table-area .table-wrap.scrollbox {
  width: 49%;
}

/* Mobile responsive */
@media screen and (max-width: 1024px) {
  .table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .table-header .info-text span::before {
    display: none;
  }
  .table-header .info-text span {
    margin-left: 10px;
  }
  .table-area {
    flex-direction: column;
  }
  .table-area .table-wrap.scrollbox {
    width: 100%;
    margin-bottom: 30px;
  }
}