.forex-widget {
  display: flex;
  gap: 15px;
}

.pair-card {
  width: 230px;
  padding: 15px;
  background: #F5F5F5;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

.pair-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.price-box {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.price {
  padding: 6px 10px;
  border-radius: 6px;
}

.up {
  color: #0bbf64;
  background: rgba(11,191,100,0.1);
}

.down {
  color: #ff4d4d;
  background: rgba(255,77,77,0.1);
}