.turbo-rfq-table .table-container {
  overflow-x: auto;
  flex-grow: 1;
}
.turbo-rfq-table .table-container table {
  margin-bottom: 0;
  border: none;
}
@media (min-width: 768px) {
  .turbo-rfq-table .table-container table {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .turbo-rfq-table .table-container table {
    width: 600px;
  }
}
.turbo-rfq-table .table-container table thead tr th {
  background-color: transparent;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
  font-weight: 500;
  color: var(--input-clr);
  padding-left: 0;
}
.turbo-rfq-table .table-container table thead tr th:first-child {
  width: 15%;
  padding-left: 0;
}
.turbo-rfq-table .table-container table thead tr th:last-child {
  text-align: end;
  width: 15%;
  padding-right: 0;
}
.turbo-rfq-table .table-container table tbody tr td {
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-brand);
  padding-left: 0;
  border-bottom: 1px solid var(--divider);
}
.turbo-rfq-table .table-container table tbody tr td:first-child {
  padding-left: 0;
  font-weight: 500;
}
.turbo-rfq-table .table-container table tbody tr td:last-child {
  padding-right: 0;
  text-align: end;
}
.turbo-rfq-table .table-container table tbody tr td button {
  color: var(--color-brand);
  background-color: var(--bg);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  padding: 8px 15px;
  border-radius: 8px;
}
