.deposit-chart-container {
  max-height: 400px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.deposit-chart-svg {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 100%;
}

.deposit-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.deposit-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}

.deposit-legend-color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

.deposit-arc {
  cursor: pointer;
}

.deposit-arc:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}
