.lfr-layout-structure-item-container {padding: 0;} .lfr-layout-structure-item-row {overflow: hidden;} .portlet-borderless .portlet-content {padding: 0;}.lfr-layout-structure-item-807fe483-00c4-22dd-bdd6-1ea2378e12ea {

}.energy-chart-container {
  font-family: 'Graphik', sans-serif;
  background: #ffffff;
  color: #1e1e1e;
  margin: 0;
  padding: 2rem;
  max-width: 1000px;
}

.chart-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.chart-subtitle {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  position: relative;
  height: 500px;
}

.chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1e1e1e;
}

.bar {
  width: 40px;
  margin: 0 10px;
  position: relative;
  transform-origin: bottom;
  height: 0;
}

.bar.animated {
  animation: grow-bar 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes grow-bar {
  from {
    height: 0;
  }
  to {
    height: var(--bar-height);
  }
}

.bar-label {
  position: absolute;
  top: -30px;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.x-axis-label {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  white-space: normal;
  word-wrap: break-word;
}

.bar-container {
  text-align: center;
  width: 60px;
  position: relative;
}

.energy-chart-footer {
  margin-top: 8rem;
  font-size: 0.8rem;
  text-align: left;
  color: #666;
}
