body {
  background: #000;
}

.table-page {
  width: 100%;
  min-height: 100vh;
  padding: 4px;
}

.table-toolbar {
  width: min(100%, 1280px);
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.table-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: #f9fafb;
  font-size: 12px;
  font-weight: 700;
}

.table-meta span {
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid #374151;
  background: #111827;
}

.full-table-panel {
  width: min(100%, 1280px);
  margin: 0 auto;
  background: #fff;
  border: 2px solid #111;
}

.full-table-wrap {
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.full-option-table {
  min-width: 720px;
  table-layout: fixed;
}

.full-option-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.full-option-table th,
.full-option-table td {
  height: 28px;
  padding: 4px 6px;
  font-size: 12px;
}

.full-option-table thead th {
  background: #f7f3e6;
}

.full-option-table .call-head {
  background: #fee2e2;
}

.full-option-table .put-head {
  background: #dbeafe;
}

.full-option-table .strike-head,
.full-option-table .strike-cell {
  background: #fff8b0;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  font-weight: 700;
}

.full-option-table tbody tr:nth-child(even) td {
  background-color: #f9fafb;
}

.full-option-table tbody tr:nth-child(even) .strike-cell {
  background-color: #fff4a3;
}

.full-option-table .empty {
  color: #9aa4b2;
}

@media (max-width: 720px) {
  .table-toolbar {
    align-items: flex-start;
  }

  .table-meta {
    font-size: 11px;
  }
}
