.tabs {
  margin-top: 20px;
  font-family: Arial, sans-serif;
}
.tab-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #0073aa;
}
.tab-buttons li {
  background: #0073aa;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.tab-buttons li:hover {
  background: #005f8d;
}
.tab-buttons li.active {
  background: #00a0d2;
  box-shadow: 0 4px 6px rgba(0,160,210,0.4);
}
.tab-content {
  display: none;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 6px 6px 6px;
  padding: 15px;
  background: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.tab-content.active {
  display: block;
}
.wp-list-table th, .wp-list-table td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
.wp-list-table tbody tr:hover {
  background-color: #e8f4fc;
}
.wp-list-table img {
  border-radius: 8px;
  max-height: 70px;
  object-fit: cover;
}
.table-wrapper {
  overflow-x: auto;
  max-height: 600px;
  border: 1px solid #ddd;
  margin-bottom: 1em;
}

.table-wrapper table {
  border-collapse: collapse;
  width: 100%;
}

.table-wrapper thead th {
  position: sticky;
  top: 0;
  background: #f9f9f9;
  z-index: 10;
  border-bottom: 2px solid #ccc;
}

.table-wrapper th, .table-wrapper td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.tab-buttons {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-left: 0;
}

.tab-buttons li {
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  flex-shrink: 0;
  list-style: none;
  background: #bccf18;
  margin-right: 2px;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  white-space: nowrap;
}

.tab-buttons li.active {
  background: #7c8908;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
