body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.exchange-widget {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 400px; /* Set width */
  height: 400px; /* Set height */
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}

.exchange-widget h2 {
  margin-top: 0;
  color: #800080; /* Purple color */
  font-size: 24px;
}

.exchange-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  height: calc(100% - 60px); /* Adjust to fit within the widget */
  overflow-y: auto;
}

.exchange-list li {
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exchange-list li:last-child {
  margin-bottom: 0;
}

.exchange-list li span {
  font-weight: bold;
  color: #333;
}

/* Custom scrollbar */
.exchange-list::-webkit-scrollbar {
  width: 5px;
}

.exchange-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.exchange-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.exchange-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}
