.progress-container {
    width: 45%; /* Dois blocos ocupam aproximadamente 45% cada */
    background-color: #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.progress-wrapper {
    display: flex;
    flex-wrap: wrap; /* Para permitir que os itens quebrem para a próxima linha */
    gap: 20px; /* Espaço entre os blocos */
    justify-content: center;
    width: 90%;
}

.progress-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #dcdcdc;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}

.progress-fill {
    height: 100%;
}

.success {
    background-color: #4caf50;
}

.error {
    background-color: #f44336;
}

.pending {
    background-color: #c7c7c7;
}

.progress-description {
    margin-top: 10px;
}

.progress-description div {
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.status-total {
    font-weight: bold;
    font-size: 16px;
}

.legend-color-box {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 3px;
    display: inline-block;
}

.legend-success {
    background-color: #4caf50; /* Verde para sucesso */
}

.legend-error {
    background-color: #f44336; /* Vermelho para erros */
}

.legend-pending {
    background-color: #c7c7c7; /* Cinza para pendente */
}