.bar-chart {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid #E2F3EB;
    margin-bottom: 10px;
    font-size: 15px;
}

.bar-chart label {
    width: 55%;
    padding-right: 5%;
}

.bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(36, 36, 36);
    box-shadow: 0 4px 7px -2px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    border-radius: 5px;
    position: relative;
    width: 100%;
}

.bar:hover {
    font-size: 40px;
    transition: all 0.2s ease;
    height: 110%;
    border-radius: 10px;
    border: 1px solid #525252;
}

.tooltip-container:hover::before {
    content: attr(data-text);
    position: absolute;
    top: -75%; 
    font-size: 12px;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* white-space: nowrap; */
    overflow: visible;
    background-color: #ffffff;
    color: black;
}

.tooltip-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    overflow: visible;
}

@media (max-width: 600px) {
  
    .bar-chart {
        font-size: 15px;
    }

}