.fixed-table-container thead th .th-inner {
    line-height: 110%;
  }
  .dollar {
    font-variant-numeric: tabular-nums
  }
  .toggle-container {
    display: flex;
    align-items: center;
  }
  .toggle-switch {
    display: none;
  }
  .toggle-container .toggle-switch {
    margin: 0 8px;
  }
  .toggle-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 30px;
    transition: background-color 0.3s;
  }
  .toggle-label .toggle-switch-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  .toggle-switch:checked + .toggle-label {
    background-color: #4caf50;
  }
  .toggle-switch:checked + .toggle-label .toggle-switch-handle {
    transform: translateX(30px);
  }
  #pre-deal-label, #live-deal-label {
    font-size: 12px;
    font-weight: bold;
  }

.trust-cash-filter .filter-dropdown {
  width: 100% !important;
}

.trust-cash-filter .custom-dropdown {
  width: 100%;
}

.custom-dropdown.custom-input {
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
}

.custom-dropdown.custom-input::-webkit-outer-spin-button,
.custom-dropdown.custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-dropdown.custom-input[type='number'] {
  -moz-appearance: textfield;
}