.fcsl-public-table .fcsl-table-wrap {
  overflow-x: auto;
}

.fcsl-pricelist-title {
  margin: 0 0 52px;
  font-size: 42px;
  line-height: 1.15;
  color: #1f2937;
  font-weight: 800;
}

.fcsl-public-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.fcsl-public-table th,
.fcsl-public-table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

.fcsl-public-table thead th {
  background: #eef2f7;
  color: #111827;
  font-weight: 700;
}

.fcsl-public-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.fcsl-public-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.fcsl-col-symbol {
  text-align: left !important;
  font-weight: 600;
}

.fcsl-col-num,
.fcsl-col-int {
  text-align: right !important;
}

.fcsl-col-pct {
  text-align: center !important;
}

.fcsl-public-table .dataTables_wrapper .fcsl-table-tools {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.fcsl-public-table .dataTables_wrapper .fcsl-tools-left {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.fcsl-public-table .dataTables_wrapper .fcsl-tools-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  min-width: 420px;
}

.fcsl-public-table .dataTables_wrapper .dataTables_length {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
}

.fcsl-public-table .dataTables_wrapper .dataTables_length select {
  min-width: 120px;
  border: 0;
  border-bottom: 2px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 4px 24px 6px 8px;
  color: #1f2937;
}

.fcsl-public-table .dataTables_wrapper .dt-button {
  border: 0 !important;
  background: transparent !important;
  color: #4b5563 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  margin: 0 0 0 22px !important;
  box-shadow: none !important;
}

.fcsl-public-table .dataTables_wrapper .dt-button .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  margin-right: 4px;
  vertical-align: text-bottom;
}

.fcsl-public-table .dataTables_wrapper .fcsl-export-links .dt-button:first-child {
  margin-left: 0 !important;
}

.fcsl-public-table .dataTables_wrapper .dt-button:hover {
  color: #111827 !important;
}

.fcsl-public-table .dataTables_wrapper .dataTables_filter {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
}

.fcsl-public-table .dataTables_wrapper .dataTables_filter input {
  border: 0;
  border-bottom: 2px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  font-size: 20px;
  min-width: 320px;
  padding: 4px 8px;
}

.fcsl-public-table .dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-bottom-color: #9ca3af;
}

.fcsl-public-table .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

.fcsl-scroller.topbar {
  width: 100%;
  background: var(--fcsl-scroller-bg, #071334);
  color: var(--fcsl-scroller-text, #e8eefc);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  z-index: 9999;
}

.fcsl-scroller-track {
  display: flex;
  width: max-content;
  animation: fcsl-scroll 320s linear infinite;
}

.fcsl-scroller.topbar:hover .fcsl-scroller-track {
  animation-play-state: paused;
}

.fcsl-scroller-content {
  display: inline-flex;
}

.fcsl-ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 56px;
  font-size: 13px;
}

.fcsl-ticker-item .sym {
  margin-right: 8px;
}

.fcsl-ticker-item .close {
  margin-right: 8px;
}

.fcsl-ticker-item .sym {
  font-weight: 700;
}

.fcsl-ticker-item .change.up {
  color: #34d399;
}

.fcsl-ticker-item .change.down {
  color: #f87171;
}

.fcsl-ticker-item .change.zero {
  color: #f3f4f6;
}

@keyframes fcsl-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
