﻿/* barchart.css */
/* Styles for the Bar chart container and layout */

.bar-chart-container {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
    gap: 24px; /* same as gap-6 (6 * 4px) */
}

.bar-chart-wrapper {
    width: 100%;
    min-height: 400px;
}
