.chart-container {
    flex: 0 0 auto;
    width: calc(20% - 20px); /* Adjusted width for 5 columns with margins */
    height: 300px; /* Fixed height for the chart container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Added margin for spacing */
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .chart-container {
        width: calc(25% - 20px); /* Adjusted width for 4 columns with margins */
    }
}

@media (max-width: 992px) {
    .chart-container {
        width: calc(33.33% - 20px); /* Adjusted width for 3 columns with margins */
    }
}

@media (max-width: 768px) {
    .chart-container {
        width: calc(50% - 20px); /* Adjusted width for 2 columns with margins */
    }
}

@media (max-width: 576px) {
    .chart-container {
        width: calc(100% - 20px); /* Full width for single column with margins */
    }
}


h2 {
    width: 100%;
    text-align: center;
}

/* Container for the filter */
.filter-container {
    display: flex;
    justify-content: center; /* Center aligning the dropdown */
    margin-bottom: 20px; /* Added some margin at the bottom */
}

/* Styling for the dropdown */
.filter-container select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

/* Additional styling for the dropdown on hover */
.filter-container select:hover {
    border-color: #888;
}

/* Additional styling for the dropdown on focus */
.filter-container select:focus {
    border-color: #aaa;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.progress-container {
    width: 80%;
    margin: 20px auto;
}

.progress-bar-background {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 20px;
    background-color: #4CAF50;
    text-align: right;
    line-height: 20px;
    /* Same as height if you want to add text inside */
    border-radius: 5px;
    color: white;
    padding-right: 5px;
}

.busineece{
    text-align: center;
    padding: 1rem;
}




/* gauge chart */

.chart--container {
    height: 100%;
    width: 100%;
    min-height: 530px;
  }
  
  .zc-ref {
    display: none;
  }


.commongague{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
}
