/* Google-Style Currency Converter */

/* Headline Rate */
.fx-headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fx-sub {
  color: #475569;
  margin-bottom: 18px;
}

/* FX Box */
.fx-box {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Main layout */
.fx-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.fx-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fx-label {
  font-size: 14px;
  color: #334155;
  font-weight: 600;
}

.fx-select {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 10px;
  font-size: 15px;
}

.fx-input {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px;
  font-size: 19px;
  font-weight: 600;
}

/* Swap button */
.fx-swap {
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 20px;
}

/* Rate row */
.fx-rate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.fx-rate-input {
  width: 150px;
  padding: 8px 10px;
  border-radius: 6px;
}

.fx-rate-label {
  font-weight: 600;
}

.fx-refresh {
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 6px;
  cursor: pointer;
}

.fx-refresh:hover {
  background: #e2e8f0;
}

.meta {
  font-size: 13px;
  color: #64748b;
}
