.currency-button {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  padding: 0.4rem 0.8rem;
  height: 38px;
  color: #e2e8f0;
  transition: all 0.2s ease;
}

.currency-button:hover {
  background-color: rgba(0, 255, 171, 0.15);
  color: 0042ff;
  transform: scale(1.05);
  border-color: rgba(0, 255, 171, 0.3);
}