/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 17 2024 | 20:04:11 */
#pillarGraphContainer {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 300px; /* Adjust the height as needed */
  width: 100%; /* Adjust the width as needed */
  padding: 10px;
  position: relative;
  background-color: #f8f8f8; /* Light background color */
  border: 1px solid #ccc; /* Border for the container */
}

.pillar {
  width: 50px; /* Width of the pillars */
  margin: 0 20px; /* Spacing between pillars */
}

.initialBalance {
  background-color: blue;
}

.currentBalance {
  background-color: green;
}

#yAxis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px; /* Width of the Y-axis */
  border-right: 2px solid black; /* Y-axis line */
}

#legend {
  position: absolute;
  bottom: -30px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.initialBalanceColor {
  background-color: blue;
}

.currentBalanceColor {
  background-color: green;
}
