.chart-container {
    background-color: #ffffff;
    border: 1px solid #e7e6ee;
    margin-top: 20px;
    padding: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.chart-title {
    color: #333;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #eeedf4;
    padding-bottom: 10px;
    font-weight: 700;
}

.chart-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-flag {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.chart-flag img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    display: block;
}

.chart-bar-container {
    flex-grow: 1;
    height: 25px;
    background-color: transparent; /* Fond blanc via le container parent */
}

.chart-bar {
    height: 100%;
    background-color: rgb(35, 75, 39);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 0.6s ease;
    min-width: 25px; /* Pour que le chiffre soit toujours visible */
}

.chart-value {
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding-right: 8px;
}

@media (min-width: 990px) {
    .chart-container {
       margin-top: 40px;
    }