.container {
    min-height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    
  }
  
  .chart-container {
    width: 100%;
    max-width: 97%;
    padding: 1.5rem;
    background-color: #424242;
    border-radius: 0.5rem;
    margin-left: 22px;
    margin-top: 20px;
  }

  /* Chart styles */
.chart-area {
    position: relative;
    height: 20rem;
  }
  
  .y-axis {
    position: absolute;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.875rem;
  }
  
  .chart-content {
    margin-left: 3rem;
    height: 100%;
    align-items: flex-end;
  }
  
  .chart-bars {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  
  .bar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
  }
  
  .bar {
    width: 2rem;
    background-color: #8b5cf6;
  }
  
  .x-axis-label {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
  
  .budget-line {
    position: absolute;
    width: 2rem;
    height: 1.5em;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Header styles */
.chart-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
  }

  /* Legend styles */
.chart-legend {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .legend-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
  }
  
  .legend-dot.previous {
    background-color: #9ca3af;
  }
  
  .legend-dot.current {
    background-color: #8b5cf6;
  }
  
  .legend-dot.forecasted {
    background-color: #9ca3af;
  }
  
  .legend-dot.budgeted {
    background-color: white;
    width: 0.5rem;
    height: 0.5rem;
  }
  
  .legend-text {
    font-size: 0.875rem;
    color: #9ca3af;
  }

  /* Comparison chart specific styles */
.comparison-chart-area {
    position: relative;
    height: 20rem;
    margin-top: 3rem;
  }
  
  .comparison-bars {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 0.5rem;
  }
  
  .month-group {
    flex: 1;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }
  
  .month-bar {
    width: 1.5rem;
    transition: height 0.3s ease;
  }
  
  .month-bar.previous {
    background-color: #9ca3af;
  }
  
  .month-bar.current {
    background-color: #8b5cf6;
  }
  
  .bar-label {
    position: absolute;
    top: -1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    transform: translateX(-50%);
  }
  
  .month-label {
    position: absolute;
    bottom: -2rem;
    font-size: 0.875rem;
    color: #9ca3af;
    transform: translateX(-50%);
  }

  /* Line chart styles */
.line-chart-area {
  position: relative;
  margin-top: 2rem;
  height: 400px;
}

.line-chart-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.line-chart {
  width: 100%;
  height: 100%;
}

.line-path {
  fill: none;
  stroke: #8b5cf6;
  stroke-width: 2;
}

.data-point {
  fill: #8b5cf6;
  stroke: white;
  stroke-width: 2;
  cursor: pointer;
  transition: r 0.2s;
}

.data-point:hover {
  r: 6;
}

.grid-line {
  stroke: #374151;
  stroke-width: 1;
  stroke-dasharray: 4;
}

.axis-label {
  fill: #9ca3af;
  font-size: 12px;
}

.tooltip {
  position: absolute;
  background: #1f2937;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

/* Metric cards styles */
.metrics-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.metric-title {
  color: #0891b2;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metric-comparison {
  color: #64748b;
  font-size: 0.75rem;
  text-align: right;
}

.metric-value {
  color: #f97316;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.metric-value.green {
  color: #059669;
}

.metric-trend {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.trend-label {
  font-size: 0.875rem;
  color: #64748b;
}

.trend-value {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trend-value.positive {
  color: #059669;
}

.trend-value.negative {
  color: #dc2626;
}

.trend-arrow {
  width: 1rem;
  height: 1rem;
}

/*# sourceMappingURL=main.5bf03b33.css.map*/