.economic-indicators {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid #ddd;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    height: 50px;
    display: flex;
    align-items: center;
}

.indicators-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.indicators-content {
    display: flex;
    white-space: nowrap;
    width: max-content; /* para que o tamanho se ajuste ao conteúdo */
    animation: scrollTicker linear infinite;
}

@keyframes scrollTicker {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.indicator {
    margin: 0 15px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: inline-block;
}

.indicator-label {
    font-weight: normal;
    color: #555;
}

.indicator-value {
    color: #28a745;
}