body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 容器优化 */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Banner 容器上下间距优化 */
#banner-container-wrapper {
  margin-top: 24px;
  margin-bottom: 10px; /* 缩小间距 */
}

#banner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.banner-item {
  width: 30%;
  min-width: 280px;
  position: relative;
}

.banner-inner {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.banner-inner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.banner-inner:hover img {
  transform: scale(1.02);
}

/* 标题覆盖图内底部 */
.banner-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  text-align: center;
  border-radius: 0 0 6px 6px;
}

/* 表格与排行样式 */
h1 span {
  font-size: 24px;
  font-weight: 600;
}

.tab-buttons {
  margin: 20px 0 10px;
  text-align: left;
}

.tab-buttons button {
  padding: 8px 20px;
  margin: 0 6px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  background-color: #e0e0e0;
  cursor: pointer;
}

.tab-buttons button.active {
  background-color: #1976d2;
  color: white;
}

/* 表格通用样式 */
.table-wrapper {
  /*overflow-x: auto;*/
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

th, td {
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid #eaeaea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

th {
  background-color: #f9fafb;
  color: #6b7280;
  font-weight: 600;
}

/* Token 单元格 */
.token-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  justify-content: flex-start;
}

.token-cell img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.token-cell span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  display: inline-block;
}

/* 标签与涨跌颜色 */
.buy-label {
  display: inline-block;
  padding: 4px 8px;
  background-color: #ccf3cd;
  border-radius: 6px;
  font-size: 12px;
  color: green;
  font-weight: bold;
}

.crypto-chart {
  width: 80px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

td.positive {
  color: green;
}

td.negative {
  color: red;
}

td a {
  color: #2d29d3;
  text-decoration: underline;
}
#load-more-meme {
  padding: 6px 20px;
  font-size: 15px;
  border-radius: 5px;
}

.copyable {
  color: #d63384;
  cursor: pointer;
  font-weight: 500;
}
.copyable:hover {
  text-decoration: underline;
}
td span {
  font-size: 12px;
}
td.positive {
  color: green;
}
td.negative {
  color: red;
}
 .table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .table th, .table td {
    text-align: center;
    vertical-align: middle;
  }