.zzb-fx-table-wrapper {
  overflow-x: auto;
}

.zzb-fx-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  font-size: 14px;
}

.zzb-fx-table th,
.zzb-fx-table td {
  padding: 8px 10px;
  text-align: center;
}

.zzb-fx-table thead tr:first-child th {
  background: linear-gradient(90deg, #007c91, #004d73);
  color: #fff;
  text-transform: uppercase;
}

.zzb-fx-table thead tr:nth-child(2) th {
  background-color: #017f8f;
  color: #fff;
}

.zzb-fx-table tbody tr:nth-child(odd) td {
  background-color: #e0f7fa;
}

.zzb-fx-table tbody tr:nth-child(even) td {
  background-color: #b2ebf2;
}

.zzb-fx-table .zzb-fx-currency-cell {
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.zzb-fx-flag {
  margin-right: 8px;
  vertical-align: middle;
}

.zzb-fx-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Indicative Rates Styles */
.zzb-fx-indicative-wrapper {
  margin: 20px 0;
}

.zzb-fx-indicative-date {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.zzb-fx-indicative-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.zzb-fx-indicative-table th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #ddd;
  background-color: #f5f5f5;
  color: #333;
}

.zzb-fx-indicative-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.zzb-fx-indicative-table tbody tr:hover {
  background-color: #f9f9f9;
}

.zzb-fx-indicative-currency {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.zzb-fx-indicative-rate {
  text-align: right;
  font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
  .zzb-fx-indicative-wrapper {
    overflow-x: auto;
  }
  
  .zzb-fx-indicative-table {
    min-width: 400px;
  }
}

