body {
  overflow-x: hidden;
}

.exchange-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.exchange-table {
  font-family: normal 13px/17px Tahoma, "Trebuchet MS", Helvetica, sans-serif;
  font-size: 14px;
  border-radius: 10px;
  border-spacing: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-collapse: collapse;
}

.exchange-table th {
  background: #E5E5E5;
  color: green;
  text-shadow: 0 1px 1px #ffffff;
  padding: 10px 20px;
}

.exchange-table th,
.exchange-table td {
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: white;
}

.exchange-table th:first-child {
  text-align: center;
  border-top-left-radius: 10px;
}
.exchange-table th:last-child {
  border-top-right-radius: 10px;
  border-right: none;
}

.exchange-table td:first-child {
  text-align: left;
}
.exchange-table td {
  padding: 10px 20px;
  background: #F1F0ED;
  font-weight: normal;
  text-shadow: 0 1px 1px #FFFFFF;
  letter-spacing: 0.5px;
  word-spacing: 0.5px;
}

.exchange-table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.exchange-table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.exchange-table tr td:last-child {
  border-right: none;
  font-weight: normal;
  text-shadow: 0 1px 1px #FFFFFF;
  text-align: left;
  letter-spacing: 0.5px;
  word-spacing: 0.5px;
}

/* Адаптив */
@media (max-width: 768px) {
  .exchange-table,
  .exchange-table thead,
  .exchange-table tbody,
  .exchange-table tr,
  .exchange-table td,
  .exchange-table th {
    display: block;
    width: 100%;
  }

  .exchange-table thead {
    display: none;
  }

  .exchange-table tr {
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    padding: 10px;
  }

  .exchange-table td {
    border: none !important;
    margin: 0;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 13px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
    hyphens: auto;
  }

  .exchange-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
}

/* Микроадаптация до 480px */
@media (max-width: 480px) {
  .exchange-table td::before {
    font-size: 13px;
  }

  .exchange-table td {
    font-size: 13px;
  }
}
