
.chart-container.artim {
    --color: #4fa15d;
}
.chart-container.azalim {
    --color: #a2434d;
}
.chart-container  {
    --color: rgba(49, 51, 49, 0.84);
}


.chart-container {


    position: relative;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(2, 120px);
    place-items: end;
    overflow: visible;
    gap: 4px;
    padding-right: 60px;
    box-sizing: border-box;
}

.bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: height 0.4s ease-in-out;

}

.old-bar {
    background-color: #d1d5db; /* Tailwind gray-300 */
    color: #4b5563; /* Tailwind gray-600 */
    height: 100px;
}

.new-bar {
    background-color: var(--color);
    color: white;
    position: relative;
}

.new-bar::before {
    content: '';
    position: absolute;
    width: 240%;
    left: -100%;
    top: 0;
    border-top: 1px dashed var(--color);
    z-index: 0;
}

.percentage-label {
    position: absolute;
    left: 103%;
    top: -16px;
    font-size: 0.75rem;
    font-weight: 600;
    color:var(--color);
    text-align: center;
}

.label {
    display: flex;
    justify-content: center;
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}


